TypeScrip默认参数、构造函数、匿名函数、箭头函数、接口函数.
在TypeScript中,你可以为函数的参数设置默认值,使用构造函数创建对象,编写匿名函数,使用箭头函数,并且定义接口来约束函数的结构。以下是一些示例代码:
// 默认参数
function greet(message: string, name: string = 'Guest') {
console.log(`${message}, ${name}!`);
}
greet('Hello'); // 输出: Hello, Guest!
greet('Hi', 'Alice'); // 输出: Hi, Alice!
// 构造函数
class User {
name: string;
constructor(name: string) {
this.name = name;
}
}
const user = new User('Alice');
console.log(user.name); // 输出: Alice
// 匿名函数
const add = function(x: number, y: number): number {
return x + y;
};
console.log(add(2, 3)); // 输出: 5
// 箭头函数
const subtract = (x: number, y: number): number => x - y;
console.log(subtract(5, 3)); // 输出: 2
// 接口定义函数结构
interface Calculator {
(x: number, y: number): number;
}
const multiply: Calculator = (x, y) => x * y;
console.log(multiply(4, 2)); // 输出: 8
这些代码示例涵盖了TypeScript中的函数使用,包括默认参数、构造函数、匿名函数、箭头函数以及接口的应用。
评论已关闭