Scala新手。语言非常简洁。
好奇为什么实现多个特征需要多个“with”语句。
例如:
class Foo extends Bar with A with B with C {}
VS
class Foo extends Bar with A, B, C {}
答案 0 :(得分:27)
考虑一下
class Foo[A, B]
new Foo[Bar with D with E, Bar with E] {}
VS
new Foo[Bar with D, E, Bar with E] {}
在所有情况下都不是明确的。