為什麼下面的算法不能停止?str 是搜索的字符串, findStr 是我要找的字符串。
String str = "helloslkhellodjladfjhello";
String findStr = "hello";
int lastIndex = 0;
int count =0;
while(lastIndex != -1){
lastIndex = str.indexOf(findStr,lastIndex);
if( lastIndex != -1){
count ++;
}
lastIndex+=findStr.length();
}
System.out.println(count);
lastIndex = str.indexOf(findStr,lastIndex);
返回 findStr 子字符串在 str 字符串中第一次出現處的 索引 ,從指定的 lastIndex 索引開始。因為lastIndex=0;所以第一次查找得到的索引還是0。
應該把下面的 lastIndex+=findStr.length();放到while循環中;這樣不會死循環了。