gpt4 book ai didi

java - List 的 removeIf() 不工作抛出 - UnsupportedOperationException

转载 作者:行者123 更新时间:2023-11-29 09:58:54 30 4
gpt4 key购买 nike

<分区>

当我尝试使用 removeIf() 从列表中删除元素时,它抛出 UnsupportedOperationException

public class T {
public static void main(String[] args) {
String[] arr = new String[] { "1", "2", "3" };
List<String> stringList = Arrays.asList(arr);
stringList.removeIf((String string) -> string.equals("2"));
}
}

谁能帮我理解为什么会这样,我该如何纠正?

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com