摘要: private static List filter(List list){ Iterator it = list.iterator(); while(it.hasNext()){ if(it.next() > 5) it.remove(); } return list; } 阅读全文
posted @ 2017-03-10 11:37 如果屈原会编程 阅读(471) 评论(0) 推荐(0) 编辑