Inheriting a trait twice

孤街浪徒 提交于 2019-11-28 02:35:29

问题


This doesn't work:

trait Trait
class Class extends Trait with Trait

Compiler complains:

<console>:8: error: trait Trait is inherited twice
       class Class extends Trait with Trait
                           ^
<console>:8: error: trait Trait is inherited twice
       class Class extends Trait with Trait
                                      ^

This does:

trait Trait
class Abstraction extends Trait
class Implementation extends Abstraction with Trait

Questions:

  • Why does it work?
  • How is the second snippet different? (concerning the double inheritance issue)
  • Is the second snippet or pattern somehow useful?

回答1:


Second snippet works because of trait linearization. The compiler will organize the traits into a linear list so that Trait only appears once. I think the linearization is

Implementation, Trait, Abstraction, ScalaObject, AnyRef, Any

See this chapter from Programming Scala for a great explanation.

This is primarily done to have a consistent approach to the diamond inheritance problem and is useful in that case.

Since Trait cannot appear twice after linearization, it does not make sense to write Trait with Trait and it makes sense to be disallowed.



来源:https://stackoverflow.com/questions/7230808/inheriting-a-trait-twice

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!