作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题在这里已经有了答案:
Why are scaladoc method signatures wrong?
(1 个回答)
4年前关闭。
我正在阅读 Scala Map 文档,并对此方法签名感到困惑
def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Map[(A, B)]
Map[(A, B)]
意思?是不是和
Map[A, B]
一样?谢谢
最佳答案
I'm reading the Scala Map doc, and got confused by this method signature
def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Map[(A, B)]
def zipAll[B, A1 >: (K, V), That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Map[K, V], (A1, B), That]): That
What does
Map[(A, B)]
mean?
(A, B)
是
Tuple2[A, B]
的语法糖,即一对(又名 2 元组)类型。
Is it the same as
Map[A, B]
?
Map[Tuple2[A, B]]
与
Map[A, B]
不一样: 前者适用
Map
类型构造函数到单个参数
(A, B)
而后者适用
Map
将构造函数键入两个参数,
A
和
B
.
Map
类型构造函数有两个参数,所以前者只是一个错误:你不能应用
Map
类型构造函数只有一个参数,你需要两个。
Map.zipAll
生成了错误的签名。 (请注意,在
zip
上的其他
Map
变体中也存在相同的错误)。
zip
将映射的键值对作为结果对的第一个元素和来自
that
的元素集合作为结果对的第二个元素,并从中构造一个映射,这将产生一个映射,该映射将原始键值对作为键和
other
元素作为值:
Map("one" → 1, "two" → 2) zip Seq('a, 'b, 'c)
//=> Map((one, 1) -> 'a, (two, 2) -> 'b)
def zipAll[A](that: collection.Iterable[A], thisElem: (K, V), thatElem: A): Map[(K, V), A]
(K, V)
为
A
在签名中。
关于scala - Map[(A, B)] 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44198367/
我是一名优秀的程序员,十分优秀!