- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对Haskell编译器有时会推断出类型较少的类型感到困惑
比我预期的多态,例如在使用无点定义时。
似乎问题出在“单态限制”上,默认情况下,
较旧版本的编译器。
考虑以下haskell程序:
{-# LANGUAGE MonomorphismRestriction #-}
import Data.List(sortBy)
plus = (+)
plus' x = (+ x)
sort = sortBy compare
main = do
print $ plus' 1.0 2.0
print $ plus 1.0 2.0
print $ sort [3, 1, 2]
ghc
进行编译,则不会获得错误,并且可执行文件的输出为:
3.0
3.0
[1,2,3]
main
正文更改为:
main = do
print $ plus' 1.0 2.0
print $ plus (1 :: Int) 2
print $ sort [3, 1, 2]
3.0
3
[1,2,3]
main = do
print $ plus' 1.0 2.0
print $ plus (1 :: Int) 2
print $ plus 1.0 2.0
print $ sort [3, 1, 2]
test.hs:13:16:
No instance for (Fractional Int) arising from the literal ‘1.0’
In the first argument of ‘plus’, namely ‘1.0’
In the second argument of ‘($)’, namely ‘plus 1.0 2.0’
In a stmt of a 'do' block: print $ plus 1.0 2.0
sort
时,也会发生相同的情况:
main = do
print $ plus' 1.0 2.0
print $ plus 1.0 2.0
print $ sort [3, 1, 2]
print $ sort "cba"
test.hs:14:17:
No instance for (Num Char) arising from the literal ‘3’
In the expression: 3
In the first argument of ‘sort’, namely ‘[3, 1, 2]’
In the second argument of ‘($)’, namely ‘sort [3, 1, 2]’
ghc
突然认为
plus
不是多态的并且需要
Int
自变量?
Int
的唯一引用是在
plus
的应用程序中,那怎么回事
ghc
突然认为
sort
需要一个
Num Char
实例?
{-# LANGUAGE MonomorphismRestriction #-}
module TestMono where
import Data.List(sortBy)
plus = (+)
plus' x = (+ x)
sort = sortBy compare
TestMono.hs:10:15:
No instance for (Ord a0) arising from a use of ‘compare’
The type variable ‘a0’ is ambiguous
Relevant bindings include
sort :: [a0] -> [a0] (bound at TestMono.hs:10:1)
Note: there are several potential instances:
instance Integral a => Ord (GHC.Real.Ratio a)
-- Defined in ‘GHC.Real’
instance Ord () -- Defined in ‘GHC.Classes’
instance (Ord a, Ord b) => Ord (a, b) -- Defined in ‘GHC.Classes’
...plus 23 others
In the first argument of ‘sortBy’, namely ‘compare’
In the expression: sortBy compare
In an equation for ‘sort’: sort = sortBy compare
ghc
无法为
Ord a => [a] -> [a]
使用多态类型
sort
?
ghc
和
plus
区别对待?
plus'
应该具有
plus
,我真的看不出有什么不同
Num a => a -> a -> a
类型开始,但只有
sort
会引发错误。
sort
的定义,文件将编译。然而
sort
并检查得到的类型:
*TestMono> :t plus
plus :: Integer -> Integer -> Integer
*TestMono> :t plus'
plus' :: Num a => a -> a -> a
ghci
多态的类型不是?
最佳答案
什么是单态性限制?
Haskell Wiki指出的monomorphism restriction是:
Haskell类型推论中的违反直觉的规则。
如果您忘记提供类型签名,则有时该规则会被填写
使用“类型默认值”规则的具有特定类型的自由类型变量。
这意味着在某些情况下,如果您的类型不明确(即多态)
编译器将选择将该类型实例化为不明确的内容。
我如何解决它?
首先,您始终可以明确提供类型签名,这将
避免触发限制:
plus :: Num a => a -> a -> a
plus = (+) -- Okay!
-- Runs as:
Prelude> plus 1.0 1
2.0
plus x y = x + y
MonomorphismRestriction
将启用它(默认)
NoMonomorphismRestriction
将禁用它。
{-# LANGUAGE NoMonomorphismRestriction #-}
:set
命令启用扩展:
Prelude> :set -XNoMonomorphismRestriction
ghc
从命令行启用扩展名:
ghc ... -XNoMonomorphismRestriction
plus = (+)
+
替换每次出现的
plus
。特别是从
(+) :: Num a => a -> a -> a
开始,您还希望拥有
plus :: Num a => a -> a -> a
。
Prelude> let plus = (+)
Prelude> plus 1.0 1
<interactive>:4:6:
No instance for (Fractional Integer) arising from the literal ‘1.0’
In the first argument of ‘plus’, namely ‘1.0’
In the expression: plus 1.0 1
In an equation for ‘it’: it = plus 1.0 1
:set -XMonomorphismRestriction
。
plus
的类型不是我们期望的:
Prelude> :t plus
plus :: Integer -> Integer -> Integer
plus
具有类型
Num a => a -> a -> a
,即多态类型。
a
来使类型变为单态。
Integer
。
ghc
编译上述代码,则不会出现任何错误。
ghci
如何处理(并且必须处理)交互式定义。
ghci
中输入的每个语句都必须在进行完全类型检查之前
f1 x = show x
f2 = \x -> show x
f3 :: (Show a) => a -> String
f3 = \x -> show x
f4 = show
f5 :: (Show a) => a -> String
f5 = show
show
的类型:
Show a => a -> String
。
test.hs:3:12:
No instance for (Show a1) arising from a use of ‘show’
The type variable ‘a1’ is ambiguous
Relevant bindings include
x :: a1 (bound at blah.hs:3:7)
f2 :: a1 -> String (bound at blah.hs:3:1)
Note: there are several potential instances:
instance Show Double -- Defined in ‘GHC.Float’
instance Show Float -- Defined in ‘GHC.Float’
instance (Integral a, Show a) => Show (GHC.Real.Ratio a)
-- Defined in ‘GHC.Real’
...plus 24 others
In the expression: show x
In the expression: \ x -> show x
In an equation for ‘f2’: f2 = \ x -> show x
test.hs:8:6:
No instance for (Show a0) arising from a use of ‘show’
The type variable ‘a0’ is ambiguous
Relevant bindings include f4 :: a0 -> String (bound at blah.hs:8:1)
Note: there are several potential instances:
instance Show Double -- Defined in ‘GHC.Float’
instance Show Float -- Defined in ‘GHC.Float’
instance (Integral a, Show a) => Show (GHC.Real.Ratio a)
-- Defined in ‘GHC.Real’
...plus 24 others
In the expression: show
In an equation for ‘f4’: f4 = show
f2
和
f4
不会编译。此外,当尝试定义这些功能时
f2
和
f4
的类型是
() -> String
!
f2
和
f4
要求单态性的原因
ghc
和
ghci
之间的行为不同是由于不同
f x = x + 1
<identifier> arg1 arg2 ... argn = expr
where
声明。但是它们并不重要。
<pattern> = expr
plus = (+)
plus
(一个变量)绑定到表达式
(+)
。
f x = x
)绑定
plus = (+)
;第4.4.3.2节),以及
plus :: Num a => a -> a -> a; plus = (+)
)。
(x:xs) = f something
或
(f, g) = ((+), (-))
)或
plus = (+)
所示)。
Num a => a -> a -> a
是多态的,因为它包含
a
和
a
对其具有约束
Num
。)
plus
可能会改变其类型。
plus = (+)
x :: Integer
x = plus 1 2
y :: Double
y = plus 1.0 2
plus
是
Integer
声明中在
x
上调用它将统一类型
a
和
Integer
,因此
plus
的类型变为:
Integer -> Integer -> Integer
y
的定义检查时,它会看到
plus
Double
参数,并且类型不匹配。
plus
而不会出现错误:
plus = (+)
x = plus 1.0 2
plus
的类型推断为
Num a => a -> a -> a
x
的定义中使用它,其中
1.0
需要一个
Fractional
Fractional a => a -> a -> a
。
genericLength
是标准函数(在库
Data.List
中)
genericLength :: Num a => [b] -> a
let len = genericLength xs
in (len, len)
len
应该只计算一次,但是没有规则1
let len :: Num a => a
len = genericLength xs
in (len, len)
f xs = (len, len)
where
len = genericLength xs
len
是多态的,则
f
的类型将是:
f :: Num a, Num b => [c] -> (a, b)
(len, len)
的两个元素实际上可能是
genericLength
完成的计算
f
的类型变为:
f :: Num a => [b] -> (a, a)
reads
是一个标准函数,其类型由签名给出
n
指定类型
∀ a. Read a ⇒ a
和
s
∀ a. Read a ⇒ String
。
s
,
s
添加类型签名来解决。
n
和
s
在
a
中都是单态的。
read
时必须以某种方式告诉编译器
plus = (+)
Num a => a -> a -> a
,其中
a
是
a
的类型
plus :: Integer -> Integer -> Integer
。
plus = (+)
x = plus 1.0 2.0
plus
的类型将是:
Fractional a => a -> a -> a
(有关发生这种情况的原因,请参见规则1)。
a
将替换为
Double
plus :: Double -> Double -> Double
和
x :: Double
。
let x = read "<something>" in show x
show
和
read
的类型是:
show :: Show a => a -> String
read :: Read a => String -> a
x
的类型为
Read a => a
。但是许多类型都满足此约束:
Int
,
Double
或
()
。选择哪一个?没有什么可以告诉我们的。
let x = read "<something>" :: Int in show x
Num
类型类来处理数字,
show 1
1
的类型为
Num a => a
,可以使用多种类型的数字。
default
声明。通过指定
default (T1, T2, T3)
我们可以更改
v
是默认的:
v
仅在
C v
是类的约束中出现
C
,则它不是默认值)。
Monad (m v)
或
Num
的子类。
Num
列表中的第一个类型替换
default
声明为
default
。
plus = (+)
minus = (-)
x = plus 1.0 1
y = minus 2 1
plus :: Fractional a => a -> a -> a
minus :: Num a => a -> a -> a
plus :: Double -> Double -> Double
minus :: Integer -> Integer -> Integer
default (Integer, Double)
sort
不能默认
Ord a => [a] -> [a]
不是数字类。
Ord
扩展名在文件中启用该功能。
ExtendedDefaultRules
,
Eq
,
Ord
或
Show
及其子类。
Num
声明为
default
。
Prelude> :set -XMonomorphismRestriction
Prelude> import Data.List(sortBy)
Prelude Data.List> let sort = sortBy compare
Prelude Data.List> :t sort
sort :: [()] -> [()]
default ((), Integer, Double)
约束导致
Ord a
几乎没有用。
关于haskell - 什么是单态性限制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56335636/
在 Haskell 中,类型声明使用双冒号,即 (::),如 not::Bool -> Bool。 但是在许多语法与 Haskell 类似的语言中,例如榆树、 Agda 、他们使用单个冒号(:)来声明
insertST :: StateDecoder -> SomeState -> Update SomeState SomeThing insertST stDecoder st = ... Stat
如果这个问题有点含糊,请提前道歉。这是一些周末白日梦的结果。 借助 Haskell 出色的类型系统,将数学(尤其是代数)结构表达为类型类是非常令人愉快的。我的意思是,看看 numeric-prelud
我有需要每 5 分钟执行一次的小程序。 目前,我有执行该任务的 shell 脚本,但我想通过 CLI 中的键为用户提供无需其他脚本即可运行它的能力。 实现这一目标的最佳方法是什么? 最佳答案 我想你会
RWH 面世已经有一段时间了(将近 3 年)。在在线跟踪这本书的渐进式写作之后,我渴望获得我的副本(我认为这是写书的最佳方式之一。)在所有相当学术性的论文中,作为一个 haskell 学生,读起来多么
一个经典的编程练习是用 Lisp/Scheme 编写一个 Lisp/Scheme 解释器。可以利用完整语言的力量来为该语言的子集生成解释器。 Haskell 有类似的练习吗?我想使用 Haskell
以下摘自' Learn You a Haskell ' 表示 f 在函数中用作“值的类型”。 这是什么意思?即“值的类型”是什么意思? Int 是“值的类型”,对吗?但是 Maybe 不是“值的类型”
现在我正在尝试创建一个基本函数,用于删除句子中的所有空格或逗号。 stringToIntList :: [Char] -> [Char] stringToIntList inpt = [ a | a
我是 Haskell 的新手,对模式匹配有疑问。这是代码的高度简化版本: data Value = MyBool Bool | MyInt Integer codeDuplicate1 :: Valu
如何解释这个表达式? :t (+) (+3) (*100) 自 和 具有相同的优先级并且是左结合的。我认为这与 ((+) (+3)) (*100) 相同.但是,我不知道它的作用。在 Learn
这怎么行 > (* 30) 4 120 但这不是 > * 30 40 error: parse error on input ‘*’ 最佳答案 (* 30) 是一个 section,它仍然将 * 视为
我想创建一个函数,删除满足第二个参数中给定谓词的第一个元素。像这样: removeFirst "abab" ( 'b') = "abab" removeFirst [1,2,3,4] even =
Context : def fib(n): if n aand returns a memoized version of the same function. The trick is t
我明白惰性求值是什么,它是如何工作的以及它有什么优势,但是你能解释一下 Haskell 中什么是严格求值吗?我似乎找不到太多关于它的信息,因为惰性评估是最著名的。 他们各自的优势是什么。什么时候真正使
digits :: Int -> [Int] digits n = reverse (x) where x | n digits 1234 = [3,1,2,4]
我在 F# 中有以下代码(来自一本书) open System.Collections.Generic type Table = abstract Item : 'T -> 'U with ge
我对 Haskell 比较陌生,过去几周一直在尝试学习它,但一直停留在过滤器和谓词上,我希望能得到帮助以帮助理解。 我遇到了一个问题,我有一个元组列表。每个元组包含一个 (songName, song
我是 haskell 的初学者,我试图为埃拉托色尼筛法定义一个简单的函数,但它说错误: • Couldn't match expected type ‘Bool -> Bool’
我是 Haskell 语言的新手,我在使用 read 函数时遇到了一些问题。准确地说,我的理解是: read "8.2" + 3.8 应该返回 12.0,因为我们希望返回与第二个成员相同的类型。我真正
当我尝试使用真实项目来驱动它来学习 Haskell 时,我遇到了以下定义。我不明白每个参数前面的感叹号是什么意思,我的书上好像也没有提到。 data MidiMessage = MidiMessage
我是一名优秀的程序员,十分优秀!