位置:首頁 > Java技術 > java實例教學 > Java替換列表中的元素

Java替換列表中的元素

如何替換列表中的一個元素

解決方法

下麵的示例使用的replaceAll()方法來替換元素,所有出現在一個列表中不同的元素。

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]