家庭作业编程11.定义一个class名称叫Wheel,Wheel含有两个属性(实例变量)byte color;int size;Wheel含有一个 两个参数的构造器,分别给Wheel中的color,size赋值;Wheel中含有一个公共的普通方法,public void roll(){ System.out.println("I am rolling...");}2.定义一个Car类,Car中含有四个属性(实例变量)Wheel wheel1,wheel2,wheel3,wheel4;Car含有一个 四个参数的构造器,分别给wheel1,wheel2,wheel3,wheel4赋值;Car中含有一个公共的普通方法,public void go(){ wheel1.roll(); wheel2.roll(); wheel3.roll(); wheel4.roll();}Car中含有一个main的入口方法,入口方法中实例化Car,并调用Car的go方法
2 回答
已采纳
不换行
TA贡献7条经验 获得超2个赞
其实吧,你的答案好像已经出来了啊
public class Wheel
{byte color;
int size;
public wheel(int size,byte color)
{this.color=color;
this.size=size;}
public void roll(){
System.out.println("I am rolling...");
}}
文件2
public class car
{private Wheel1,Wheel2,Wheel3,Wheel4;
public car(Wheel one,Wheel two,Wheel three,Wheel four)
{Wheel1=one;
Wheel2=two;
Wheel3=three;
Wheel4=four;}
public void go(){
wheel1.roll();
wheel2.roll();
wheel3.roll();
wheel4.roll();
}
public static void main(String args[]){
car one=new car();
one.go();}
}
添加回答
举报
0/150
提交
取消