已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题吗?**通过editing this post添加详细信息并阐明问题。
1小时前关闭。
Improve this question
我在java中有两个列表,分别输入到两个类中。
头等舱。
public class House implements Entity {
float length;
float width;
//setters and getters
二等舱:
public class HousesWithTotal implements Entity {
private List<house> houses;
private float totalLength;
private float totalWidth;
//setters and getters
}
主要是,我创建了房屋列表,并在上面输入了数据,然后我需要将它复制到属性中房屋列表的HousesWithTotal对象中,我该怎么做呢?
2条答案
按热度按时间gt0wga4j1#
我建议在类中封装逻辑。
totalLength
和totalWidth
应在HouseWithTotal
类中。演示版
cwdobuhd2#
创建一个新的ArrayList,并使用构造函数或addAll方法处理源列表。