【TypeScript】进阶之路语法细节,类型和函数
// 定义一个函数,接收两个参数,返回它们的和
function add(x: number, y: number): number {
return x + y;
}
// 使用类型别名来定义一个对象的形状,包含name(string类型)和age(number类型)
type Person = {
name: string;
age: number;
};
// 使用接口(interface)来定义一个对象的形状,同样包含name和age
interface Employee {
name: string;
age: number;
}
// 定义一个函数,接收一个Person类型的参数,并打印其信息
function printPersonInfo(person: Person) {
console.log(`Name: ${person.name}, Age: ${person.age}`);
}
// 调用函数,传入符合Person类型的对象
printPersonInfo({ name: 'Alice', age: 30 });
// 定义一个函数,接收一个Employee接口的实现,并返回其age
function getEmployeeAge(employee: Employee): number {
return employee.age;
}
// 使用类型断言来获取元素的文本内容
const element = document.getElementById('example') as HTMLElement;
const content = element.textContent;
这段代码展示了如何在TypeScript中定义函数、类型别名、接口,以及如何使用它们。同时,还展示了如何使用TypeScript进行类型检查,以及如何在实际的JavaScript代码中使用TypeScript的类型注解。
评论已关闭