public void testItrater(){ Iterator it = course.iterator(); while(it.hasNext()){ Course cr = (Course) it.next(); System.out.println(cr.id+" "+cr.name); } }
因为只是遍历功能 并没有转化功能 使用泛型就不用强转了