如何在Scala中修复此类型不匹配错误?

时间:2015-03-31 14:25:35

标签: scala generics types

我在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 }
                                                   ^

我想知道它究竟意味着什么以及如何解决它。

1 个答案:

答案 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 }