这是我之前的question:
的后续内容假设我创建了以下测试converter.scala
:
trait ConverterTo[T] {
def convert(s: String): Option[T]
}
object Converters {
implicit val toInt: ConverterTo[Int] =
new ConverterTo[Int] {
def convert(s: String) = scala.util.Try(s.toInt).toOption
}
}
class A {
import Converters._
def foo[T](s: String)(implicit ct: ConverterTo[T]) = ct.convert(s)
}
现在当我试图在REPL中调用foo
时,它无法编译:
scala> :load converter.scala
Loading converter.scala...
defined trait ConverterTo
defined module Converters
defined class A
scala> val a = new A()
scala> a.foo[Int]("0")
<console>:12: error: could not find implicit value for parameter ct: ConverterTo[Int]
a.foo[Int]("0")
^
答案 0 :(得分:2)
import Converters._
中的 class A
并没有削减它。您可以删除它,代码仍然可以编译。编译器需要在实际隐式中找到的那一刻不在class A
中,其中foo
刚刚被声明。
编译器需要在调用REPL中的ConverterTo[Int]
时在隐式作用域中找到a.foo[Int](..)
。所以这就是进口需要的地方。
如果object Converters
和trait ConverterTo
的名称相同(因此会有一个伴随对象),则不需要导入。