Java--遍历嵌套list的三种方法

//1.The first way          Iterator<ArrayList<Student>> it = cla.iterator();         int count = 1;         while(it.hasNext()) {             Iterator<Student> itt = it.next().iterator();             
相关文章
相关标签/搜索