作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
考虑以下两种类型:
data Point=Point{x::Float,y::Float}
data Rectangle = {upperLeft::Point, bottomRight::Point}
data Square = {upperLeft::Point, bottomRight::Point}
let a=Rectangle{upperLeft=Point 2 3, bottomRight=Point 7 7}
let a=Square{upperLeft=Point 2 3, bottomRight=Point 7 7}
最佳答案
由于对象可以通过它们的字段名访问,编译器必须能够从它的字段名推断对象的类型。例如,在
boundingBox x = bottomRight x - upperLeft x
bottomRight
和
upperLeft
用于推断
x
的类型.如果允许多个类型具有相同的访问器名称,则无法推断类型。
data Rectangle = {rc_upperLeft :: Point, rc_bottomRight :: Point}
data Square = {sq_upperLeft :: Point, sq_bottomRight :: Point}
关于haskell - 如何将 haskell 字段名称放置在不同的 namespace 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14267969/
我是一名优秀的程序员,十分优秀!