摘要: 1. 使用Arrays.asList()将数组转化为List注意事项 Integer[] integers = {1, 2, 3, 4, 5}; //直接将数组转化为List,其底层表示仍然是数组,因此不能调整尺寸,也就不能进行增删 List<Integer> integerList = Array 阅读全文
posted @ 2020-09-19 21:44 it00zyq 阅读(99) 评论(1) 推荐(0)