作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用下面的 MRE,我希望得到以下输出:
$ scala mre.scala
1
object Main {
def main(args: Array[String]): Unit = {
implicit val thing = List[String]().map(_.to(List))
for (x <- 1 to 1) {
println(x)
}
}
}
但是我得到的是以下内容
$ scala mre.scala
mre.scala:4: error: type mismatch;
found : Int(1)
required: scala.collection.Factory[Char,?]
for (x <- 1 to 1) {
如果我删除 implicit
或 .map(_.to(List))
则它会按预期工作。
这里到底发生了什么?我什至不知道从哪里开始。
$ scala --version
Scala code runner version 2.13.7 -- Copyright 2002-2021, LAMP/EPFL and Lightbend, Inc.
最佳答案
有根据的猜测(99% 的确定性):任何集合都扩展 (Partial
)Function
因此,通过使集合隐式,您提供了隐式转换(因为任何一元 implicit def
OR 隐式函数是隐式转换):
// this
implicit val thing = List[String]().map(_.to(List))
// implies this
implicit def intToCharList(idx: Int): List[Char]] = thing(idx)
那么这里:
1 to 1
你有歧义:它可能是:
Int
.to(Int)
扩展方法
Int
被隐式转换后,List
上的普通方法 .to(CollectionType)
(从 Scala 2.13 开始)如果编译器选择后者,那么你有类似的东西
thing(1).to(1) // .to expects collection factory and got 1 instead
这会触发您看到的错误。它可能会选择后者,因为您在同一范围内声明了您的隐含和 richInt
implicit conversion在 scala.Predef
的 LowPriorityImplicit
中声明,所以 Scala 会更喜欢你的。
在 Scala 3 中,隐式转换是 Function
的 子类型,所以这个问题不会发生。在 Scala 2 中,我只能强烈建议不要将 any 集合设为隐式。
关于scala - 为什么带有映射的隐式会产生 Range 语句错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70314308/
我是一名优秀的程序员,十分优秀!