阅读量:0
在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
作为参数。这个方法遍历整个字符串,并在每次找到目标字符时递增计数器。最后,该方法返回计数器的值。