- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
ArrowList
hxt 包中的类具有以下声明:class (Arrow a, ArrowPlus a, ArrowZero a, ArrowApply a) => ArrowList a where
...ArrowPlus
类被声明为:class ArrowZero a => ArrowPlus a where
...ArrowZero
类被声明为:class Arrow a => ArrowZero a where
...
和 ArrowApply
类被声明为:class Arrow a => ArrowApply a where
...
为什么不能直接写成:class (ArrowPlus a, ArrowApply a) => ArrowList a where
...?
最佳答案
不,没有必要包含所有父类(super class)。如果你写
class (ArrowPlus a, ArrowApply a) => ArrowList a where
module Example where
class Foo a where
foo :: a -> String
class Foo a => Bar a
class Bar a => Baz a
class Baz a => Xyzzy a
quux :: Xyzzy a => a -> String
quux = foo
ghc -c -ddump-simpl
),我们看到这会生成一个查找调用链。它首先在字典中查找 Baz
在 Xyzzy
,然后 Bar
在那,然后Foo
,终于可以查到foo
.Example.quux
:: forall a_abI. Example.Xyzzy a_abI => a_abI -> GHC.Base.String
[GblId, Arity=1, Caf=NoCafRefs]
Example.quux =
\ (@ a_acE) ($dXyzzy_acF :: Example.Xyzzy a_acE) ->
Example.foo
@ a_acE
(Example.$p1Bar
@ a_acE
(Example.$p1Baz @ a_acE (Example.$p1Xyzzy @ a_acE $dXyzzy_acF)))
Xyzzy
的定义明确提及 Foo
:class (Foo a, Baz a) => Xyzzy a
Foo
直接来自 Xyzzy
的字典一并查找foo
在那里面。Example.quux
:: forall a_abD. Example.Xyzzy a_abD => a_abD -> GHC.Base.String
[GblId, Arity=1, Caf=NoCafRefs]
Example.quux =
\ (@ a_acz) ($dXyzzy_acA :: Example.Xyzzy a_acz) ->
Example.foo @ a_acz (Example.$p1Xyzzy @ a_acz $dXyzzy_acA)
关于haskell - 是否有必要在类声明的类上下文中指定每个父类(super class)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6782389/
我正在使用 this solution在二进制矩阵中找到与图像边界对齐的矩形。假设现在我想找到一个不与图像边框对齐的矩形,并且我不知道它的方向;找到它的最快方法是什么? 为了示例,让我们寻找一个仅包含
else: 行在这个 Python 程序中是否正确/必要? from random import randrange for n in range(10): r = randrange(0,1
在 TDPL 7.1.5.1 中讨论了将 Widget w2 分配给 w1 并且作者指出“将 w2 逐个字段分配给 w1 会将 w2.array 分配给 w1.array——一个简单的数组边界分配,而
我是一名优秀的程序员,十分优秀!