我想知道如何使用相同的格式更改为 for 或 while 循环
public List<String> noZ(List<String> strings) {
return strings.stream().filter(x -> !x.contains("z")).collect(Collectors.toList());
}
这是我到目前为止所做的,但我还没有得到结果:
for (int i = 0; i < string.stream().size(); i++) {
string x;
if (x.contains("z")) {
String.valueOf(strings.stream().filter);
}
}
江户川乱折腾
相关分类