Dart中的抽象类
2019-09-19 本文已影响0人
三米板
Dart中的抽象类,没有什么好说的,和java中一样的。
如果有java基础,看一眼就明白了:
abstract class Doer {
// Define instance variables and methods...
void doSomething(); // Define an abstract method.
}
class EffectiveDoer extends Doer {
void doSomething() {
// Provide an implementation, so the method is not abstract here...
}
}