我如何获得comp1和comp2的值。我尝试过使用迭代器,但它给了我异常。
更新:如果我必须在另一个类中获取值而不是我能做到这一点
public class Complex {
public List<String>comp1;
public List<String>comp2;
public List<String> getComp2() {
return comp2;
}
public void setComp2(List<String> comp2) {
this.comp2 = comp2;
}
public List<String> getComp1() {
return comp1;
}
public void setComp1(List<String> comp1) {
this.comp1 = comp1;
}
}
答案 0 :(得分:0)
Iterator<String> it = comp1.getIterator();
while(it.hasNext()) {
//do something with it
it.next();
}
comp2相同。