4 Matching Annotations
- Aug 2023
- Dec 2022
-
www.zhihu.com www.zhihu.com
-
Mixin是什么概念?
Tags
Annotators
URL
-
- Mar 2018
-
gleichmann.wordpress.com gleichmann.wordpress.com
-
Mixin’ traits ‘statically’
静态的 mixin a trait 是说:这个 trait 的成员(method, field) 可以有一个 default implementation. 这样你 mixin 这个 trait 的时候,可以只提供那些没有 Implementation 的抽象函数。 当然也可以都自己实现一遍。
-
val singingPerson = new Person with Singerperson.sing
val singingPerson = new Person with Singer 倒是很像 组合
-