gpt4 book ai didi

haskell - ghci - 默认混淆

转载 作者:行者123 更新时间:2023-12-04 16:51:07 25 4
gpt4 key购买 nike

在检查不同整数类型的大小( minBoundmaxBound )和“十进制表示的长度”时,我碰巧看到了一些奇怪的行为。

使用 GHCi:

Prelude> :{
Prelude| let mi = minBound
Prelude| ma = maxBound
Prelude| le = fromIntegral $ length $ show ma
Prelude| in [mi,ma,le] :: [Int]
Prelude| :}
[-9223372036854775808,922372036854775807,2]
^

在我期望的最后一个位置 19 .

我的第一个猜测是 maxBound默认为 ()从而产生 2 ,但我不明白,因为 ma应该是 Int通过显式类型注释( :: [Int] ) - 并通过引用透明所有名为 ma 的符号应该是平等的。

如果我将上面的语句放在一个文件中并将其加载到 GHCi 中,我会得到正确的结果。

那么为什么我会得到错误的结果呢?

最佳答案

令人困惑的是,这仍然是单态限制在起作用(或者更确切地说,在 GHCi 中缺乏单态限制)。由于 GHCi 没有启用单态限制,您对 mi 的定义和 ma不要专攻Int正如您认为的那样 - 相反,它们保持一般性 mi, ma :: Bounded a => aa变量被实例化两次

  • 曾经为 ()fromIntegral $ length $ show ma (如您所见,这是默认设置)
  • 曾经为 Int[mi,ma,le] :: [Int]

  • 如果你想要 mima实际上是 Int 类型, 直接注释它们
    Prelude> :{
    Prelude| let mi, ma :: Int
    Prelude| mi = minBound
    Prelude| ma = maxBound
    Prelude| le = fromIntegral $ length $ show ma
    Prelude| in [mi,ma,le]
    Prelude| :}
    [-9223372036854775808,9223372036854775807,19]

    或者在 GHCi 中手动开启单态限制
    Prelude> :set -XMonomorphismRestriction
    Prelude> :{
    Prelude| let mi = minBound
    Prelude| ma = maxBound
    Prelude| le = fromIntegral $ length $ show ma
    Prelude| in [mi,ma,le] :: [Int]
    Prelude| :}
    [-9223372036854775808,9223372036854775807,19]

    关于haskell - ghci - 默认混淆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42233527/

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