用一个大集合存入20个随机数字,然后筛选其中的偶数元素,放到小集合当中。 要求使用自定义的方法来实现筛选。
public class Demo05ArrayListTest2 { public static void main(String[] args) { ArrayList<Integer> biglist=new ArrayList<>(); Random r=new Random(); for (int i = ...