Java - 배열을 리스트(ArrayList)로 변환

배열(Array)을 ArrayList(리스트)로 변환하는 방법을 소개합니다.

  • Arrays.asList()로 배열을 리스트로 변환
  • List.of()으로 배열을 리스트로 변환
  • 반복문으로 배열을 리스트로 변환

Arrays.asList()로 배열을 리스트로 변환

Arrays.asList()을 사용하여 배열을 ArrayList로 변환할 수 있습니다.

String[] arr = {"a", "b", "c", "d"};

List<String> list = Arrays.asList(arr);

list.forEach(System.out::println);

Output:

a
b
c
d

Java 9 : List.of()으로 배열을 리스트로 변환

List.of()를 사용하여 배열을 ArrayList로 변환할 수 있습니다.

String[] arr = {"a", "b", "c", "d"};

List<String> list = new ArrayList<>(List.of(arr));

list.forEach(System.out::println);

Output:

a
b
c
d

반복문으로 배열을 리스트로 변환

반복문을 사용하여 배열을 ArrayList로 변환할 수 있습니다.

String[] arr = {"a", "b", "c", "d"};
List<String> list = new ArrayList<>();

for (String item : arr) {
    list.add(item);
}

list.forEach(System.out::println);

Output:

a
b
c
d

References

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha