黑马程序员技术交流社区
标题:
出现不了正确的结果为什么
[打印本页]
作者:
曹亚辉
时间:
2016-9-14 21:17
标题:
出现不了正确的结果为什么
package com.hui_words;
import java.util.HashMap;
public class test {
public static void main(String[] args) {
String s = "你 好 要,不 好.好 不 好 ( 很 好) 好 个 人 - 你 才 是 ";
System.out.println(s);
String replaceAll = s.replaceAll("[,.()-]", " ");
System.out.println(replaceAll);
String[] split = replaceAll.split(" +");
for (String string : split) {
System.out.println(string);
}
HashMap<String,Integer> hashMap = new HashMap<>();
for (String string : split) {
if (hashMap.containsKey(string)) {
Integer integer = hashMap.get(string);
hashMap.put(string, integer++);
}else {
hashMap.put(string, 1);
}
}
System.out.println(hashMap);
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2