Scala,访问特征中的抽象类型类

发布于 2024-10-04 13:58:00 字数 410 浏览 1 评论 0原文

我正在 Scala 代码中试验隐式变量。我编写了以下示例代码,但不幸的是它无法编译。我想知道,有人知道这里缺少什么吗? (在 Linux 上使用 scala 2.8.0 和 SBT 0.7.4)

谢谢, 阿里

trait Feed 
trait FeedFactory  {   
type T <: Feed   
implicit val op_name = classOf[T].getCanonicalName    
def create():T   
def destroy(op:T)   
}

Error: class type required but FeedFactory.this.T found    
implicit val op_name = classOf[T].getCanonicalName

I am experimenting with implicit variables in my Scala code. I wrote the following sample code but unfortunately it fails to compile. I was wondering, does anybody know what is missing here ? (using scala 2.8.0 with SBT 0.7.4 on linux)

Thanks,
Ali

trait Feed 
trait FeedFactory  {   
type T <: Feed   
implicit val op_name = classOf[T].getCanonicalName    
def create():T   
def destroy(op:T)   
}

Error: class type required but FeedFactory.this.T found    
implicit val op_name = classOf[T].getCanonicalName

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日记撕了你也走了 2024-10-11 13:58:00

类型 T 在编译时被遗忘(请参阅类型擦除)。但 scala 提供了通过编译保留类型的 Manifest。

这是更完整的解释

type T is forgotten at compile time (see type erasure). But scala offers Manifests that retain type through compilation.

Here is a more complete explanation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文