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