欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  Java

Java接口的典型案例分享

程序员文章站 2022-03-18 08:25:47
...
下面小编就为大家带来一篇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());
 }
}

以上就是Java接口的典型案例分享的详细内容,更多请关注其它相关文章!