String str = "kkabkkcdkkefkks";
//sop(getSubCount(str ,"kk")); 问题所在
sop("count="+getSubCount(str ,"kk"));
}
/* 练习三 */
public static int getSubCount(String str , String key)
{
int count = 0;
int index = 0;
while ((index=str.indexOf(key))!=-1)
{
sop("str="+str);
str = str.substring(index+key.length());
count++;
}
return count;
}
返回值 是 count
为什么我打印 sop(getSubCount(str ,"kk")); 的时候出现
无法将 Demo1 中的 sop(java.lang.String) 应用于 (int)
sop(A);
用 sop("count="+getSubCount(str ,"kk")); 就可以呢?
就因为加了个字符串????
求高手指点一下 {:soso_e101:}
^
|