다음 예에서는 Collections 클래스의 replacementAll()을 사용하여 목록에 지정된 모든 요소를 바꾸는 방법을 보여줍니다.
/* author by w3cschool.cc Main.java */ import java.util.*; public class Main { public static void main(String[] args) { List list = Arrays.asList("one Two three Four five six one three Four".split(" ")); System.out.println("List :"+list); Collections.replaceAll(list, "one", "hundread"); System.out.println("replaceAll: " + list); } }
위 코드를 실행한 결과는 다음과 같습니다.
List :[one, Two, three, Four, five, six, one, three, Four] replaceAll: [hundread, Two, three, Four, five, six, hundread, three, Four]
위는 Java 예제-List 요소 대체 내용입니다. 더 많은 관련 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!