为类添加功能: Mixin
Mixin 是复用类代码的一种途径, 复用的类可以在不同层级之间可以不存在继承关系。
Mixin,通过 with 后面跟一个或多个混入的名称来使用 ,以下示例演示了两个使用 Mixin 的类:
class Musician extends Performer with Musical {
// ···
}
class Maestro extends Person
with Musical, Aggressive, Demented {
Maestro(String maestroName) {
name = maestroName;
canConduct = true;
}
}
一个 Mixin 可以通过创建一个继承自 Object 且没有构造函数的类来实现 。 如果 Mixin 不希望作为常规类被使用,使用关键字 mixin 替换 class 。 例如:
mixin Musical {
bool canPlayPiano = false;
bool canCompose = false;
bool canConduct = false;
void entertainMe() {
if (canPlayPiano) {
print('Playing piano');
} else if (canConduct) {
print('Waving hands');
} else {
print('Humming to self');
}
}
}
指定只有某些类型可以使用的 Mixin - 比如, Mixin 可以调用 Mixin 自身没有定义的方法 - 使用 on 来指定可以使用 Mixin 的父类类型:
mixin MusicalPerformer on Musician {
// ···
}
早期版本中的代码通常使用 abstract class 代替。 在 Dart 2.1 中mixin 关键字被引用支持。
一些对 Mixin 的限制正在被移除。