作者weirou //小汽车最多能载吨货物 interface car{ int MAX_LOADWare= ; } //出租车最多能载个人 interface taxs{ int MAX_LOADMan =; } //一般的汽车最高时速能达到千米/小时 class fathercar{ int intspeed =; int drivespeed() { return intspeed; } } ///如果想要公共汽车有 小汽车的功能也要有一般汽车出租车的功能 可以如下设置 //首先公共汽车(bus)继承一般汽车然后实现car 和taxs 接口(因为一个类只允许有一个子类) class bus extends fathercar implements cartaxs{ private int intware; //定义个私有变量(可以认为是bus自身有的特性) private int intman; public int loadware() { intware=MAX_LOADWare; return intware; } public int loadman() { intman =MAX_LOADMan; return intman; } } public class eat{ public static void main(String[] args){ bus nbbus= new bus(); //打印公共汽车的功能 Systemoutprintln(the max drive speed of bus+ nbbusdrivespeed());//最高速度 Systemoutprintln(the max ware weight of bus+ nbbusloadware());//最高载重量 Systemoutprintln(the max man number of bus+ nbbusloadman());//可以载个人 } } |