–
遍历删除集合中的元素
1 | public static void main(String[] args) { |
java8 应该使用stream。
1 | nums = nums.stream().filter(num -> num % 2 == 0).collect(toList()); |
–
1 | public static void main(String[] args) { |
java8 应该使用stream。
1 | nums = nums.stream().filter(num -> num % 2 == 0).collect(toList()); |
Update your browser to view this website correctly. Update my browser now