Java 实例 – List 元素替换 - Break易站
Posted MrAit
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 实例 – List 元素替换 - Break易站相关的知识,希望对你有一定的参考价值。
[Java 实例 - List 元素替换
Java 实例
以下实例演示了如何使用 Collections 类的 replaceAll() 来替换List中所有的指定元素:
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", "hundrea"); System.out.println("replaceAll: " + list); } }
以上代码运行输出结果为:
List :[one, Two, three, Four, five, six, one, three, Four] replaceAll: [hundrea, Two, three, Four, five, six, hundrea, three, Four]
Java 实例
以上是关于Java 实例 – List 元素替换 - Break易站的主要内容,如果未能解决你的问题,请参考以下文章