多平台统一管理软件接口,如何实现多平台统一管理软件接口
264
2023-03-29
java实现接口的典型案例
废话不多说,直接上代码
package com.car;
interface Carr{
//汽车名称
String getName();
//获得汽车售价
int getPrice();
}
class BMW implements Carr{
public String getName(){
return "BMW";
}
public int getPrice(){
return 300000;
}
}
class CheryQQ implements Carr{
public String getName(){
return "CheryQQ";
}
public int getPrice(){
return 20000;
}
}
public class Car {
private int money=0;
public void sellCar(Carr car){
System.out.println("车型:"+car.getName()+"单价:"+car.getPrice());
money+=car.getPrice();
}
public int getMoney(){
return money;
}
public static void main(String[] args) {
Car aShop = new Car();
aShop.sellCar(new BMW());
aShop.sellCar(new CheryQQ());
System.out.println("总收入:"+aShop.getMoney());
}
}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~