次の例は、Collections クラスの replaceAll() を使用して、List 内の指定されたすべての要素を置き換える方法を示しています。
/* 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 中国語 Web サイト (www.php.cn) にご注意ください。