Java를 사용하여 배열을 ArrayList로 쉽게 변환
Java에서는 배열에 데이터를 저장하는 것이 일반적이지만 때로는 다음과 같은 컬렉션을 사용하여 작업해야 할 수도 있습니다. 배열목록. 배열에서 ArrayList를 생성하는 것은 간단한 과정입니다.
배열을 ArrayList로 변환
Element[] 배열에 Element 개체가 포함되어 있다고 생각하세요.
Element[] array = {new Element(1), new Element(2), new Element(3)};
이 배열을 ArrayList
ArrayList<Element> arrayList = new ArrayList<>(Arrays.asList(array));
사용 예
다음은 변환을 설명하는 예입니다.
// Create an Element array Element[] array = {new Element(1), new Element(2), new Element(3)}; // Convert the array to ArrayList ArrayList<Element> arrayList = new ArrayList<>(Arrays.asList(array)); // Iterate over the ArrayList for (Element element : arrayList) { System.out.println(element); }
위 내용은 Java 배열을 ArrayList로 쉽게 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!