提供给我的扩展类。为现有类提供新功能。或扩展现有的mixin
或虚拟类,一切都可以工作。
也许像这样:
class FlatButton {} // maybe not defined by me
mixin on FlatButton {
roundCorner(int pixels) {
//...
}
}
final button = FlatButton();
button.roundCorner(10)
Swift / Kotlin通过extension
关键字或带有prototype
的js支持。