怎么传递
时间: 2024-02-24 22:53:40 浏览: 40
可以在clothes类中添加一个带参数的构造函数,用于接收属性值。例如:
```
public class clothes {
private String name;
private String color;
private int size;
public clothes(String name, String color, int size) {
this.name = name;
this.color = color;
this.size = size;
}
// 省略getter和setter方法
}
```
在Wardrobe类的构造函数中,创建clothes对象时,就可以通过参数来传递属性值。例如:
```
public Wardrobe() {
String name = "shirt";
String color = "blue";
int size = 8;
clothes newClothes = new clothes(name, color, size);
addClothes(newClothes);
}
```
这样创建的clothes对象就有了实际的属性值,不再是默认值了。当然,在实际使用时,可以根据具体情况灵活调整。
阅读全文