java编程:定义一个矩形类Rectangle
(1)该类中包含矩形的宽width和高height两个成员变量;(2)无参构造方法给宽和高赋值为10;(3)带两个参数的构造方法分别给width和height赋值;(4)...
(1)该类中包含矩形的宽width和高height两个成员变量;
(2)无参构造方法给宽和高赋值为10;
(3)带两个参数的构造方法分别给width和height赋值;
(4)area方法用于求矩形的面积。
(5)请按要求定义该矩形类。 展开
(2)无参构造方法给宽和高赋值为10;
(3)带两个参数的构造方法分别给width和height赋值;
(4)area方法用于求矩形的面积。
(5)请按要求定义该矩形类。 展开
1个回答
展开全部
public class Rectangle{
private int width;
private int height;
public Rectangle(){
this.width = 10;
this.height = 10;
}
public Rectangle(int width, int height){
this.width = width;
this.height = height;
}
public int area(){
return width * height;
}
/肢胡知旁/省历猛拦略getter/setter
}
private int width;
private int height;
public Rectangle(){
this.width = 10;
this.height = 10;
}
public Rectangle(int width, int height){
this.width = width;
this.height = height;
}
public int area(){
return width * height;
}
/肢胡知旁/省历猛拦略getter/setter
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询