Java 编写一个矩形类Rect

1、编写一个矩形类Rect.java包含:两个私有属性:矩形的宽width;矩形的长length。一个构造器法:带有两个参数的构造器方法,用于将width和length属... 1、编写一个矩形类Rect.java
包含:
两个私有属性:矩形的宽width;矩形的长length。
一个构造器法:带有两个参数的构造器方法,用于将width和length属性初化。
length和width属性的set和get方法。
两个公有成员方法:分别用于计算并返回矩形的面积和周长。
展开
 我来答
tudou869
2009-10-10 · TA获得超过513个赞
知道小有建树答主
回答量:527
采纳率:0%
帮助的人:354万
展开全部
public class Rect {
private double length;//矩形的长
private double width;//矩形的宽

public Rect() {}//默认构造器

public Rect(double length,double width) {
this.length = length;
this.width = width;
}

/**
* 取得矩形的面积
* */
public double getArea(){
return this.getLength() * this.getWidth();
}

/**
* 取得矩形的周长
* */
public double getPerimeter(){
return (this.getLength() + this.getWidth()) * 2;
}

/**
* 取得矩形的面积,需传入矩形长与宽
* */
public double getArea(double length,double width){
return length * width;
}

/**
* 取得矩形的周长,需传入矩形长与宽
* */
public double getPerimeter(double length,double width){
return (length + width) * 2;
}

public double getLength() {
return length;
}

public void setLength(double length) {
this.length = length;
}

public double getWidth() {
return width;
}

public void setWidth(double width) {
this.width = width;
}
}
andygulin
推荐于2016-07-30 · TA获得超过1678个赞
知道小有建树答主
回答量:1362
采纳率:0%
帮助的人:1116万
展开全部
public class Rect {
private double width;
private double height;

public Rect(double width, double height) {
this.width = width;
this.height = height;
}

public Rect() {
}

public double getWidth() {
return width;
}

public void setWidth(double width) {
this.width = width;
}

public double getHeight() {
return height;
}

public void setHeight(double height) {
this.height = height;
}

public double getArea() {
return this.width * this.height;
}

public double getAround() {
return 2 * (this.width + this.height);
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
fable1009
2009-10-10
知道答主
回答量:18
采纳率:0%
帮助的人:0
展开全部
public class Rect {

/**
* @param args
*/

private Double width;
private Double length;

public Rect(Double width,Double length){
this.width = width;
this.length = length;

}

public Double getWidth() {
return width;
}

public void setWidth(Double width) {
this.width = width;
}

public Double getLength() {
return length;
}

public void setLength(Double length) {
this.length = length;
}

//计算矩形面积

public Double Rect_Area(){
return this.width*this.length;
}

//计算矩形周长

public Double Rect_Around(){
return 2*(this.width+this.length);
}

}

//测试类
public test {
public static void main(String[] args) {
// TODO Auto-generated method stub
Double w = 20.0;
Double l = 30.0;
Rect rect = new Rect(w,l);
System.out.println("宽度:"+w+" 长度:"+l+"面积:"+rect.Rect_Area());
System.out.println("宽度:"+w+" 长度:"+l+"周长:"+rect.Rect_Around());

}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
衢江小草
2009-10-12
知道答主
回答量:28
采纳率:0%
帮助的人:12.7万
展开全部
你是不是宁波教育学院的,我是*林君收到请留言。谢谢
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式