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

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

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

解决方法

您可能在方法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 }

相关文章

共收录Twitter的14款开源软件,第1页Twitter的Emoji表情 Tw...
Java和Scala中关于==的区别Java:==比较两个变量本身的值,即...
本篇内容主要讲解“Scala怎么使用”,感兴趣的朋友不妨来看看...
这篇文章主要介绍“Scala是一种什么语言”,在日常操作中,相...
这篇文章主要介绍“Scala Trait怎么使用”,在日常操作中,相...
这篇文章主要介绍“Scala类型检查与模式匹配怎么使用”,在日...