在Java中,你可以使用以下方法來查找字符串中指定字符的個數:
public class CountCharacter {
public static void main(String[] args) {
String str = "hello world";
char ch = 'l';
int count = countCharacterOccurrences(str, ch);
System.out.println("The character '" + ch + "' occurs " + count + " times in the string \"" + str + "\"");
}
public static int countCharacterOccurrences(String str, char ch) {
int count = 0;
for (int i = 0; i < str.length(); i++) {
if (str.charAt(i) == ch) {
count++;
}
}
return count;
}
}
在這個例子中,我們定義了一個名為countCharacterOccurrences
的方法,它接受一個字符串str
和一個字符ch
作為參數。這個方法遍歷整個字符串,并在每次找到目標字符時遞增計數器。最后,該方法返回計數器的值。