- 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/
单向链表 单向链表比顺序结构的线性表最大的好处就是不用保证存放的位置,它只需要用指针去指向下一个元素就能搞定。 单链表图解 图画的比较粗糙,简单的讲解一下: 上面四个长方形,每个长方
使用TCP,我正在设计一些类似于next的程序。 客户端在许多线程中的接收正在等待一台服务器的发送消息。但是,这是有条件的。 recv正在等待特定的发送消息。 例如 客户 thread 1: recv
我正在编写正则表达式来验证电子邮件。唯一让我困惑的是: 顶级域名可以使用单个字符吗?(例如:lockevn.c) 背景:我知道顶级域名可以是 2 个字符到任意字符(.uk、.us 到 .canon、.
是否可以在单个定义中定义同一 Controller 的多个路由? 例如: 我想要一个单一的定义 /, /about, /privacy-policy 使用类似的东西 _home: pat
我正在使用 objective-c开发针对 11.4 iOS 的单 View 应用程序,以及 Xcode版本是 9.4.1。 创建后有Main.storyboard和LaunchScreen.stor
我一直在尝试在 shell 程序中实现管道结构,如果我执行简单的命令(例如“hello | rev”),它就可以工作 但是当我尝试执行“head -c 1000000/dev/urandom | wc
此表包含主机和接口(interface)列UNIQUE 组合* 编辑:这个表也有一个自动递增的唯一 ID,抱歉我应该在之前提到这个 ** | host.... | interface..... |
我想将具有固定补丁大小的“std filter”应用于单 channel 图像。 也就是说,我希望 out[i,j] 等于 img[i,j] 附近的像素值的标准值。 对于那些熟悉 Matlab 的人,
假设我想进行网络调用并使用 rx.Single,因为我希望只有一个值。 我如何应用replay().autoConnect() 这样的东西,这样当我从多个来源订阅时网络调用就不会发生多次?我应该使用
我将图像从 rgb 转换为 YUV。现在我想单独找到亮度 channel 的平均值。你能告诉我如何实现这一目标吗?此外,有没有办法确定图像由多少个 channel 组成? 最佳答案 你可以这样做: #
在比较Go和Scala的语句结束检测时,我发现Scala的规则更丰富,即: A line ending is treated as a semicolon unless one of the foll
在IEEE 1800-2005或更高版本中,&和&&二进制运算符有什么区别?它们相等吗? 我注意到,当a和b的类型为bit时,这些coverpoint定义的行为相同: cp: coverpoint a
我正在使用Flutter的provider软件包。我要实现的是为一个 View 或页面提供一个简单的提供程序。因此,我在小部件中尝试了以下操作: Widget build(BuildContext c
我正在尝试在 cython 中使用 openmp。我需要在 cython 中做两件事: i) 在我的 cython 代码中使用 #pragma omp single{} 作用域。 ii) 使用#pra
我正在尝试从转义字符字符串中删除单引号和双引号。它对单引号 ' 或双自动 " 不起作用。 请问有人可以帮忙吗? var mysting = escapedStr.replace(/^%22/g, '
我正在尝试在 cython 中使用 openmp。我需要在 cython 中做两件事: i) 在我的 cython 代码中使用 #pragma omp single{} 作用域。 ii) 使用#pra
我正在使用 ANT+ 协议(protocol),将智能手机与 ANT+ USB 加密狗连接,该加密狗通过 SimulANT+ 连接到 PC。 SimulANT+ 正在模拟一个心率传感器,它将数据发送到
有人可以解释/理解单/多线程模式下计算结果的不同吗? 这是一个大约的例子。圆周率的计算: #include #include #include const int itera(100000000
我编写了一个粗略的阴影映射实现,它使用 6 个不同的 View 矩阵渲染场景 6 次以创建立方体贴图。 作为优化,我正在尝试使用几何着色器升级到单 channel 方法,但很难从我的着色器获得任何输出
尝试使用 Single-Spa 构建一些东西并面临添加到应用程序 AngularJS 的问题。 Angular2 和 ReactJs 工作完美,但如果添加 AngularJS 并尝试为此应用程序使用
我是一名优秀的程序员,十分优秀!