标签:image 修改 string rgs public 密码 length 初始 pac
其属性包括宽width、高height和颜色color,width和height都是double型的,而color则是String类型的。要求该类具有:
(1) 使用构造函数完成各属性的初始赋值
(2) 使用get…()和set…()的形式完成属性的访问及修改
(3) 提供计算面积的getArea()方法和计算周长的getLength()方法
package 测试;
public class Rectangle {
private double width;
private double height;
private String color;
public double getWidth() {
return width;
}
public void setWidth(double n) {
width=n;
}
public double getHeight() {
return height;
}
public void setHeight(double n) {
height=n;
}
public String getColor() {
return color;
}
public void setColor(String n) {
color=n;
}
public Rectangle(double width,double height,String color) {
this.setWidth(width);
this.setHeight(height);
this.setColor(color);
}
public double getArea() {
return width*height;
}
public double getLength() {
return width*2+height*2;
}
public static void main(String[] args) {
Rectangle rec=new Rectangle(6, 12, "蓝色");
System.out.println("矩形的宽:"+rec.getWidth());
System.out.println("矩形的高:"+rec.getHeight());
System.out.println("矩形的颜色:"+rec.getColor());
System.out.println("矩形的面积:"+rec.getArea());
System.out.println("矩形的周长:"+rec.getLength());
}
}
标签:image 修改 string rgs public 密码 length 初始 pac
原文地址:https://www.cnblogs.com/zhuwanxing/p/11558691.html