gpt4 book ai didi

haskell - Haskell 如何处理重载多态性?

转载 作者:行者123 更新时间:2023-12-03 13:39:58 24 4
gpt4 key购买 nike

我有一个关于 Haskell 多态性的问题。
据我所知,有两种类型的多态性:

  • 参数 : 你没有指定输入类型。
    例子:
     functionName :: [a] -> a
  • 重载 : 作为命令式编程,即将不同的参数传递给同一个函数。

  • 我的问题是:Haskell 如何处理重载?

    最佳答案

    Haskell 中的重载是使用类型类完成的。例如,假设您要重载一个函数 foo返回 Int :

    class Fooable a where
    foo :: a -> Int

    instance Fooable Int where
    foo = id

    instance Fooable Bool where
    foo _ = 42

    但是,它们比大多数语言中的重载机制更强大。例如,您可以重载返回类型:
    class Barable a where
    bar :: Int -> a

    instance Barable Int where
    bar x = x + 3

    instance Barable Bool where
    bar x = x < 10

    有关更多示例,请查看 predefined type classes在 haskell 。

    关于haskell - Haskell 如何处理重载多态性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6636107/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com