使用声明为final的类的主要目的是防止该类被子类化。如果一个类被标记为final,则没有任何类可以从final类继承任何特性。public final class Test { // body of class }