微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在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 }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐