function spendTime(callback: () => any) {
const startTime = new Date().getTime();
const result = callback();
console.log(`耗时:${new Date().getTime() - startTime}ms`);
return result;
}
function initStr(): string {
return 'abc';
}
function initArr(): number[] {
return [1,2,3];
}
const sthStr = spendTime(() => initStr()); // sthStr is any not string
const sthArr = spendTime(() => initArr()); // sthArr is any not number[]
这里最后得到的sthStr
和sthArr
的类型其实是callback: () => any
中返回的any
类型,应该怎么写callback
的定义才能让其返回值跟随传入的函数呢?
使用泛型