标签: scala
说我看到了这个:
object ThingA extends OtherThingA[ThingB, ThingA] {...
和此:
trait OtherThingA[B, A <: LastThing[B]] extends ...
这到底是做什么的?
以下是我的理解:
我想当我们实际扩展OtherThingA时,我们会对其进行扩展并声明其类型ThingB和ThingA?
OtherThingA
ThingB
ThingA