JAVA 遍历List

三种遍历方法:
一:采用size()
for(int i = 0 ; i <objListstaff.size(); i++ ){
Object[] tempObj = objListstaff.get(i);
system.out.print(tempObj[0] + “————“ +tempObj[1] );
}

二:采用迭代器

for (Iterator iterator = objListstaff.iterator(); iterator.hasNext();) {
Object[] tempObj = ( Object[]) iterator.next();
system.out.print(tempObj[0] + “————“ tempObj[1] );

}

三:采用foreach循环
for(Object[] tempObj : objListstaff){
system.out.printtempObj[0] + “————“ tempObj[1] );

}