JAVA,写一个名为Rectangle的类表示矩形

写一个名为Rectangle的类表示矩形。其属性包括宽width、高height和颜色color,width和height都是double型的,而color则是Strin... 写一个名为Rectangle的类表示矩形。其属性包括宽width、高height和颜色color,width和height都是double型的,而color则是String类型的。要求该类提供计算面积的方法getArea()方法,以及修改width和height的值及获得width和height当前值的方法。要求:
(1) 使用构造函数完成各属性的初始赋值
(2) P52使用getter和setter的形式完成属性的访问及修改
(3) P63 重载toString()方法,把矩形对象的宽,高,以及颜色显示出来。
(4) 自定义测试函数
展开
 我来答
于美龙111
推荐于2017-09-28 · TA获得超过571个赞
知道答主
回答量:10
采纳率:0%
帮助的人:8.5万
展开全部
这个我做完了 希望您能满意

public class Rectangle {
private double height;
private double width;
private String color;
public double getHeight() {
return height;
}
public void setHeight(double height) {
this.height = height;
}
public double getWidth() {
return width;
}
public void setWidth(double width) {
this.width = width;
}
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
public Rectangle(double width,double height,String color){
this.setColor(color);
this.setHeight(height);
this.setWidth(width);
}
public void getArea(){
double area=0;
area=this.height*this.width;
System.out.println("矩形的面积为"+area);
}
public String toString(){
String recStr="矩形的高度:"+this.getHeight()+"宽度:"+this.getWidth()
+"颜色:"+this.getColor();
return recStr;
}
/**
* 测试函数
* @param args
*/
public static void main(String[] args) {
Rectangle rec=new Rectangle(3, 4, "红色");
rec.getArea();
System.out.println(rec.toString());
}
}
来自屏岩洞强壮的翠玉
推荐于2018-04-29 · TA获得超过1111个赞
知道小有建树答主
回答量:850
采纳率:0%
帮助的人:701万
展开全部
说明
1。颜色题目没初始化,我定义为“black”
2。 测试函数具体没说测试什么,以及长宽没初始化数值,故代码中只调用toString()方法,具体自己改写

public class Test
{
public static void main(String[] args)
{
Rectangle r1 = new Rectangle(2.3,5.2);
System.out.println(r1.toString());

}

}

class Rectangle
{
private double width,height;
private String color = "black";
Rectangle(double width,double height)
{
this.width = width;
this.height = height;
}
public void setWidth(double width)
{
this.width = width;
}
public double getWidth()
{
return width;
}
public void setHeight(double height)
{
this.height = height;
}
public double Height()
{
return height;
}
public double getArea()
{
return height * width;
}
public String toString()
{
return "长方形的宽是" + width + "长方形的高是" + height + "长方形的颜色是" + color;
}

}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式