Typescript 可否让回调函数参数的返回值自动跟随传入的回调函数?

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[]

这里最后得到的sthStrsthArr的类型其实是callback: () => any中返回的any类型,应该怎么写callback的定义才能让其返回值跟随传入的函数呢?

阅读 2k
2 个回答

使用泛型

function spendTime<T>(callback:()=>T): T {
    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());
  const sthArr = spendTime(() => initArr());

用泛型。

function spendTime<T>(callback: (...args: any[]) => T): T
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进