谁能告诉我为什么这个 wordsearch 方法不起作用 -每次运行时count的返回值都是 0。
public int wordcount(){
String spaceString = " ";
int count = 0;
for(int i = 0; i < this.getString().length(); i++){
if (this.getString().substring(i).equals(spaceString)){
count++;
}
}
return count;
}
getString 的值 = 我的搜索字符串。如果有人可以提供帮助,我们将不胜感激 - 我敢肯定我正在做一些愚蠢的事情。迪伦