Java中List陣列互轉

獵手家園發表於2022-09-16

1、陣列轉List

Integer[] cts = {1296, 1297, 1299, 1300, 1301, 1303, 1304, 1305, 1306, 1310, 1312, 1313, 1323, 1324};
List<Integer> ctlist = Arrays.asList(cts);

注意這裡list裡面的元素直接是cts裡面的元素,對cts的修改,直接影響list;

 

2、List轉陣列

Integer[] newcts = ctlist.toArray(new Integer[0]);

 

相關文章