Dart中的抽象类

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...
  }
}

你可能感兴趣的:(Dart中的抽象类)