作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
reduceLeft
的签名在一些 Seq[A]
是
def reduceLeft [B >: A] (f: (B, A) => B): B
A
的类型是已知的,但下限
>:
告诉我们
B
可以是
A
的任何父类(super class)型.
def reduceLeft (f: (A, A) => A): A
A
所以我想不出
B
可以是不等于
A
的任何值.你能提供一个例子吗
B
是不是有些超人?
最佳答案
假设您的 B 类有一个方法 combine(other:B): B
.现在您调用reduceLeft((b,a) => b.combine(a))
在 A
的列表中s。由于 combine
的返回类型是 B
reduceLeft
的类型参数需要B
.
关于scala - 为什么 reduceLeft 的类型参数包含下界?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8364763/
我是一名优秀的程序员,十分优秀!