定义一个名为Rectangle的类来表示矩形,这个类包括: (1)两个名为width和height的double类型数据域,它们分别表示矩形的宽和高。width和height的默认值都为1。 (2)一个用于创建默认矩形的无参构造方法。 (3)一个创建指定width和height值的矩形的构造方法。 (4)一个名为getArea()的方法,返回该矩形的面积。 (5)一个名为getPerimeter()的方法,返回周长。
时间: 2024-03-22 21:42:51 浏览: 97
好的,这是一个关于Rectangle类的问题,我来为您解答。
以下是定义一个Rectangle类的代码:
```java
public class Rectangle {
private double width;
private double height;
// 无参构造方法
public Rectangle() {
this.width = 1;
this.height = 1;
}
// 构造方法
public Rectangle(double width, double height) {
this.width = width;
this.height = height;
}
// 返回矩形的面积
public double getArea() {
return width * height;
}
// 返回矩形的周长
public double getPerimeter() {
return 2 * (width + height);
}
}
```
这个类有两个私有数据域:width和height,它们分别表示矩形的宽和高。默认值都为1。有一个无参构造方法创建默认矩形,有一个构造方法创建指定width和height值的矩形。有两个方法getArea()和getPerimeter(),分别返回该矩形的面积和周长。
您可以使用以下代码来创建Rectangle对象并调用其方法:
```java
Rectangle rectangle1 = new Rectangle(); // 创建默认矩形
System.out.println("矩形1的面积:" + rectangle1.getArea());
System.out.println("矩形1的周长:" + rectangle1.getPerimeter());
Rectangle rectangle2 = new Rectangle(5,10); // 创建指定width和height值的矩形
System.out.println("矩形2的面积:" + rectangle2.getArea());
System.out.println("矩形2的周长:" + rectangle2.getPerimeter());
```
输出结果将会是:
```
矩形1的面积:1.0
矩形1的周长:4.0
矩形2的面积:50.0
矩形2的周长:30.0
```
希望这能够回答您的问题。
阅读全文