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

更好的设计通常是将此类方法设为 abstract,以便继承这些方法的类提供实现。

示例:


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