java统计一个字符串中字符出现得次数
时间: 2023-03-24 13:04:17 浏览: 115
统计一个字符串中每个字符出现的次数
可以使用 HashMap 来统计一个字符串中字符出现的次数。具体实现可以参考以下代码:
```
import java.util.HashMap;
public class Main {
public static void main(String[] args) {
String str = "hello world";
HashMap<Character, Integer> map = new HashMap<>();
for (int i = ; i < str.length(); i++) {
char c = str.charAt(i);
if (map.containsKey(c)) {
map.put(c, map.get(c) + 1);
} else {
map.put(c, 1);
}
}
System.out.println(map);
}
}
```
输出结果为:
```
{ =1, r=1, d=1, e=1, h=1, l=3, o=2, w=1}
```
其中,HashMap 的 key 表示字符,value 表示出现的次数。
阅读全文