Files
javaSE-0113/day09/src/com/inmind/extends_override03/test/Demo04.java

16 lines
433 B
Java

package com.inmind.extends_override03.test;
/*
重写的应用场景:手机
重写的意义:对于父类中方法的功能的扩展
*/
public class Demo04 {
public static void main(String[] args) {
//买新旧手机,感受下重写的效果
Phone phone = new Phone();
phone.show();
System.out.println("-------");
NewPhone newPhone = new NewPhone();
newPhone.show();
}
}