Java,为Cylinder类添加一个无参的构造方法(设定radius变量值为3,height变量值为10)和一个有参的构造方法,并利用构造方法来初始化圆柱体类Cylinder的成员变量,分别用无参构造方法和有参构造方法创建对象Cylinder1和Cylinder2,并调用相应的方法求圆柱的底面积和体积。
请教一下各位有没有人会啊
Java,为Cylinder类添加一个无参的构造方法(设定radius变量值为3,height变量值为10)和一个有参的构造方法,并利用构造方法来初始化圆柱体类Cylinder的成员变量,分别用无参构造方法和有参构造方法创建对象Cylinder1和Cylinder2,并调用相应的方法求圆柱的底面积和体积。
请教一下各位有没有人会啊
public class Cylinder {
public double radius=3;
public double height=10;
public Cylinder(){
}
public Cylinder(double radius,double height){
this.radius=radius;
this.height=height;
}
public void print(){
System.out.println("底面积为"+3.14*radius*radius+"体积为"+3.14*radius*radius*height);
}
public static void main(String[] args) {
Cylinder cylinder1=new Cylinder();
cylinder1.print();
Cylinder cylinder2=new Cylinder(1,1);
cylinder2.print();
}
}