gpt4 book ai didi

Java - 删除字符

转载 作者:行者123 更新时间:2023-11-30 07:17:12 26 4
gpt4 key购买 nike

我认为我对-1为什么在这段代码中起作用没有一个坚定的理解:它只是一个允许程序继续运行的地方标记吗?任何帮助或指导将不胜感激。

public class RemovingChar {

public static void main(String[]args)
{
String str = "Looking out the window of my small apartment";
String remove = "aeiou";


String x = " ";

for(int i=0; i<str.length(); i++)
{
char c = str.charAt(i);

if(remove.indexOf(c) == -1)
{
x+= c;
}
}
System.out.print(x);
}
}

最佳答案

public int indexOf(int ch)

如果此字符串中没有出现这样的字符,则返回-1。

关于Java - 删除字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16354768/

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