List經常使用方法及3種經常使用遍歷方式

集合類的通用遍歷方式, 用迭代器迭代: Iterator it = list.iterator(); while(it.hasNext()) {   Object obj = it.next(); } public class ArrayListDemo { public static void main(String[] args) { ArrayList<String> list = n
相關文章
相關標籤/搜索