如何在java8中更改字符串列表中的项目
我想更改 中的所有项目。
正确的方法是什么?list
java8
public class TestIt {
public static void main(String[] args) {
ArrayList<String> l = new ArrayList<>();
l.add("AB");
l.add("A");
l.add("AA");
l.forEach(x -> x = "b" + x);
System.out.println(l);
}
}