final關(guān)鍵字
使用final修飾過的都是不可改變的在這里插入代碼片
public class FinalMethodTest {
}
class Tree{
public final void develop() {
System.out.println(“小樹在生長”);
}
}
class LittleTree extends Tree{
public LittleTree() {
}
// public void develop() {
// 不能被重寫
// }
public void develop(String name) {
//可以被重載
}
}