使用宣告為final的類別的主要目的是防止該類別被類別化。如果一個類別被標記為final,則沒有任何類別可以從final類別繼承任何特性。 public final class Test { // body of class }