继承中的方法覆盖重写 应用场景

继承中的方法覆盖重写 应用场景

比如我们现在有一款手机,然后我们通以前的旧手机 在来更新一下新手机

我们先来实例的旧手机元素

public class UsedMobile {
private String name;
private String call;

public UsedMobile(String name, String call) {
this.name = name;
this.call = call;
}

@Override
public String toString() {
return "UsedMobile{" +
"name='" + name + '\'' +
", call='" + call + '\'' +
'}';
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public String getCall() {
return call;
}

public void setCall(String call) {
this.call = call;
}
}

我们创建的旧手机类,然后在创建一个新手机

新手机继承旧手机 然后在手机的功能上进行修改

public class NenWmobile  extends UsedMobile{

private String name;
private String gomgnen;
public NenWmobile(String name, String call) {
super(name, call);
}

public NenWmobile(String name, String call, String name1, String gomgnen) {
super(name, call);
this.name = name1;
this.gomgnen = gomgnen;
}

}

我们来看一下测试类:

public class Test {
public static void main(String[] args) {
NenWmobile nenWmobile = new NenWmobile("大哥大", "打电话");
UsedMobile mobile = new UsedMobile("小灵通", "拍照");
System.out.println(nenWmobile.getName());
System.out.println(nenWmobile.getCall());
System.out.println(mobile.getName());
System.out.println(mobile.getCall());
}
}

运行一下:

 

 

 

posted @ 2022-07-01 16:48  一位程序袁  阅读(22)  评论(0编辑  收藏  举报