Haskell 的多态性风格是什么?

发布于 2024-11-02 03:48:07 字数 67 浏览 2 评论 0原文

对于 Haskell 的类型类,它几乎似乎支持临时多态性,但它的函数声明似乎是参数多态性。我是否混淆了对不同事物的理解?

With Haskell's type classes it almost seems that it enables ad hoc polymorphism, but its functions declarations seem parametric polymorphism. Am I mixing my understanding of different things?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪我鬧 2024-11-09 03:48:07

事实上,Haskell 支持(更高级别的)参数多态性和临时(或有界)多态性。 Haskell 中的参数多态性是通过其 Hindley-Milner/System F 类型系统支持的。通过类型类支持临时多态性。

有关类型类和临时多态性的起源,请参阅 Wadler 的论文:

有关参数多态性和临时多态性之间区别的起源,您可以挖掘 Strachey 的论文,

Indeed, Haskell supports both (higher rank) parametric polymorphism, and ad hoc (or bounded) polymorphism. Parametric polymorphism in Haskell is supported via its Hindley-Milner/System F type system. Ad hoc polymorphism is supported via type classes.

For the origin of type classes and ad hoc polymorphism, see Wadler's papers:

For the origin of the distinction between parametric and ad hoc polymorphism, you can dig up Strachey's papers,

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文