TypeScript 函数类型参数的用法举例

export type GeneralFunction<T,V> = {
    (name: T, value: V): T
}

四种不同的写法:


const a1: GeneralFunction<string, number> = (a: string, b: number) => a + b;

const a2: GeneralFunction<string, number> = (a, b) => a + b;

const a3 = (a: string, b: number) => a + b;

const a4 = <GeneralFunction<string, number>>((a:string,b:number) => a + b);

console.log(a1('Ethan', 1));
console.log(a2('Ethan', 2));
console.log(a3('Ethan', 3));
console.log(a4('Ethan', 4));

其中第三种其实并没有用到 GeneralFunction 的类型。


编译错误:TypeScript 函数类型参数的用法举例

上一篇:【MATLAB】进阶绘图 ( imagesc 缩放颜色显示图像 | imagesc 函数 | Colormaps 颜色图 )(二)


下一篇:一个非常有用的函数——COALESCE