报告 abstract 类中的 no-op (表示“无操作”)方法。

更好的设计通常是令这些方法 abstract 本身,以便继承这些方法的类来提供实现。

示例:


  abstract class Test {
    protected void doTest() {
    }
  }