JAVA集合的相关处理总结
程序员文章站
2022-07-12 08:39:08
...
1、注意集合只能存放对象,不能存放基本类型的数据,1.5之后有了自动拆箱/装箱才弥补了这一缺点,但是有些地方转换不了要注意,比如
List<int[]> result = Arrays.asList(new int[5]); // 我期望的是List<int>
List<Integer> result2 = Arrays.asList(new Integer(5));
上一篇: 最大子段和问题(动态规划)
推荐阅读