A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

199.下面的类表示一个矩形,请找出源代码中的错误并改正。
public class Rectangle {
private int width;
private int height;
public Rectangle() {
super(1, 1);
}
public Rectangle(int width, int height) {
this.width = width;
this.height = height;
}
public void getHeight() {
return height;
}
public void setHeight(int height) {
height = height;
}
public void getWidth() {
return width;
}
public void setWidth(int width) {
width = width;
}
public int getArea() {
this.width * this.height;
}
public double getPerimeter() {
2 * (this.width + this.height);
}
}

2 个回复

倒序浏览
public class Rectangle {
private int width;
private int height;
public Rectangle() {
super(1, 1);
}
public Rectangle(int width, int height) {
this.width = width;
this.height = height;
}
public void getHeight() {  //  public  int getHeight      有返回语句  怎么能是void的呢?

return height;
}
public void setHeight(int height) {
height = height;                            this.height = height;
}
public void getWidth() {                  public int getWidth   和上面一样
return width;
}
public void setWidth(int width) {      
width = width;              this.width = width;  

}
public int getArea() {
this.width * this.height;          返回类型是  int的  所以  return this.width*this.height
}
public double getPerimeter() {
2 * (this.width + this.height);         同上  前面加return
}
}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马