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(); } }