remove集合的用法

循環集合的方法有三種: 簡單for循環 iterator循環 增強for循環 例子如下: List<Long> fList = new ArrayList<Long>(); fList.add(1L); fList.add(2L); fList.add(3L); fList.add(4L); // 簡單for循環 for(int n = 0; n < fList.size(); n++){ Sys
相關文章
相關標籤/搜索