arg是number类型 那arg+1肯定是number类型。函数返回值Type 也对吧?

作者站长头像
站长
· 阅读数 3

arg是number类型 那arg+1肯定是number类型。函数返回值Type 也对吧。为什么报错呢

function identity<Type>(arg: Type): Type {
  if(typeof arg === 'number' ){
    //Type 'number' is not assignable to type 'Type'.
    // 'Type' could be instantiated with an arbitrary 
    //type which could be unrelated to 'number'.
    return arg + 1  
  }else {
    return arg
  }
}
回复
1个回答
avatar
test
2024-07-06

answer image

看图就很容易理解了,比如你传入的是 1 ,那么其实最终的返回值也为 1,而当符合你的 type arg === 'number' 时,你对其进行了 + 1 ,此时为 2 和推断的结果本身就是不一致的。

你疑惑的点其实是先入为主认为,只要你传入数字类型就会被推断为 number 了。

本文参与了SegmentFault 思否面试闯关挑战赛,欢迎正在阅读的你也加入。
回复
likes
适合作为回答的
  • 经过验证的有效解决办法
  • 自己的经验指引,对解决问题有帮助
  • 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
  • 询问内容细节或回复楼层
  • 与题目无关的内容
  • “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容