Javascript 不支持参数多态性(通用编程)?
我找不到任何有关 Javascript 通用编程的信息。 所以我认为它不受支持。 这是真的吗?有什么接近的吗?
I cannot find any information on Generic Programming in Javascript.
So I assume it is not supported.
Is it true? Is there anything that comes close?
Parametric Polymorphism
http://en.wikipedia.org/wiki/Parametric_polymorphism
Generic Programming
http://en.wikipedia.org/wiki/Generic_programming
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
JavaScript 是动态鸭子类型的。泛型在这种情况下没有意义。没有静态类型。支持不支持都是无稽之谈。
JavaScript is dynamically duck typed. Generics don't make sense in that context. There aren't static types. It being supported or not is nonsensical.
您是否在寻找类似的内容:
我认为 JavaScript/ECMA 不支持此功能-262:ECMAScript 规范。
Are you looking for something like:
I think that's is not supported by JavaScript/ECMA-262: ECMAScript specification.
您可能想看看这个 JavaScript 泛型类型实现。
You may want to take a look at this JavaScript generic type implementation.