gpt4 book ai didi

scala - 为什么带有映射的隐式会产生 Range 语句错误?

转载 作者:行者123 更新时间:2023-12-05 00:52:18 24 4
gpt4 key购买 nike

使用下面的 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 conversionscala.PredefLowPriorityImplicit 中声明,所以 Scala 会更喜欢你的。

在 Scala 3 中,隐式转换是 Function子类型,所以这个问题不会发生。在 Scala 2 中,我只能强烈建议不要将 any 集合设为隐式。

关于scala - 为什么带有映射的隐式会产生 Range 语句错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70314308/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com