import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
public class Sample {
public static void main(String[] args) {
ArrayList<Integer> list = new ArrayList<>(Arrays.asList(1, 2, 3, 4, 5));
LinkedList<Integer> list2 = new LinkedList<>(Arrays.asList(1, 2, 3, 4, 5));
// [1, 2, 3, 4, 5]
System.out.println(list);
System.out.println(list2);
}
}
자바에서 List 선언 시 값 넣어주려고 list.add(값)을 사용하지 않고 선언과 동시에 값을 넣어 초기화하고 싶은데 방법은 ArrayList<타입> list = new ArrayList<>(Arrays.asList(1, 2, 3, 4, 5));
이런 식으로 Array.asList에 값을 넣어 선언해주면 List에 값을 넣어 구현할 수 있다
Leave a Reply