Java,rectangle传入默认值
时间: 2024-10-19 07:01:12 浏览: 15
Rectangle List java 源码
在Java中,如果你创建一个Rectangle类,并想为其宽度和高度属性提供默认值,你可以这样做:
首先,定义一个Rectangle类,包含宽度(width)和高度(height)字段,以及它们各自的默认值。例如,假设宽度默认为0,高度默认为1:
```java
public class Rectangle {
private int width = 0;
private int height = 1;
// 其他构造函数、getter和setter方法...
public Rectangle() {
// 如果不需要自定义初始化,可以直接省略无参构造函数
}
public Rectangle(int width) {
this.width = width;
}
public Rectangle(int width, int height) {
this.width = width;
this.height = height;
}
}
```
在这个例子中,如果你想创建一个Rectangle实例并使用默认值,可以只传递宽度:
```java
Rectangle rectangle = new Rectangle(); // 使用默认宽度0和高度1
```
如果需要特定宽度和高度,可以传递两个参数:
```java
Rectangle customRectangle = new Rectangle(5, 3); // 宽度为5,高度为3
```
阅读全文