[자바] 리스트 합치기 리스트들을 하나의 리스트로 합치는 방법입니다. List l1 = new ArrayList(); List l2 = new ArrayList(); l1.add("t1"); l1.add("t2"); l2.add("t3"); l3.add("t4"); List l3 = new ArrayList(); // l1과 l2 리스트가 하나로 합쳐진 l3 리스트 l3.addAll(l2); l3.addAll(l3); 스마트웹앱콘텐츠전문가/JAVA 2021.03.15