asList(1, 2, 3, 4, 5); // immutable list, cant modify , java 9 List<Integer> list2 = List.of(1, 2, 3, 4, 5); //list.add(6); ...
確定! 回上一頁