스마트웹앱콘텐츠전문가/JAVA

[자바] 리스트 합치기

9D4U 2021. 3. 15. 15:37
728x90
반응형

리스트들을 하나의 리스트로 합치는 방법입니다.

 

List<String> l1 = new ArrayList<String>();
List<String> l2 = new ArrayList<String>();

l1.add("t1");
l1.add("t2");

l2.add("t3");
l3.add("t4");

List<String> l3 = new ArrayList<String>(); // l1과 l2 리스트가 하나로 합쳐진 l3 리스트
l3.addAll(l2);
l3.addAll(l3);

728x90