作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试以最接近功能的风格编写 typescript 函数。对于简单的功能,我可以写:
type A = (value: number) => string;
const a: A = value => value.toString();
function a<T>(value: T): T {
return value;
}
type A = <T>(value: T) => T;
const a: A = value => value; // `value` implicitly has an `any` type
最佳答案
在您的最后一个片段中:
type A = <T>(value: T) => T;
const a: A = value => value;
a
是
A
类型,但您没有将它绑定(bind)到特定的泛型类型,这就是它使用
any
的原因.
const a: A = (value: string) => value;
type A<T> = (value: T) => T;
const a: A<string> = value => value;
a
再具体一点。
a
为了保持通用性,您还需要在其上声明通用约束:
const a: A = <T>(value: T) => value;
关于generics - 如何在 Typescript 中为箭头函数创建泛型类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41875350/
我是一名优秀的程序员,十分优秀!