如何使用迭代器获取List <string>的值

时间:2015-11-11 06:59:43

标签: collections

我如何获得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;
}

}

1 个答案:

答案 0 :(得分:0)

Iterator<String> it = comp1.getIterator();
while(it.hasNext()) {
   //do something with it
   it.next();
}

comp2相同。