abstract
更好的设计通常是将此类方法设为 abstract,以便继承这些方法的类提供实现。
示例:
abstract class Test { protected void doTest() { } }