我在Scala REPL中遇到以下错误:
scala> trait Foo[T] { def foo[T]:T }
defined trait Foo
scala> object FooInt extends Foo[Int] { def foo[Int] = 0 }
<console>:8: error: type mismatch;
found : scala.Int(0)
required: Int
object FooInt extends Foo[Int] { def foo[Int] = 0 }
^
我想知道它究竟意味着什么以及如何解决它。
答案 0 :(得分:10)
您可能不需要方法foo
上的类型参数。问题在于它遮蔽了它的特征Foo
的类型参数,但它不一样。
object FooInt extends Foo[Int] {
def foo[Int] = 0
// ^ This is a type parameter named Int, not Int the class.
}
同样地,
trait Foo[T] { def foo[T]: T }
^ not the ^
same T
你应该删除它:
trait Foo[T] { def foo: T }
object FooInt extends Foo[Int] { def foo = 0 }