要找出重复的字符串,可以使用HashMap来记录每个字符串出现的次数。
具体步骤如下:
以下是一个示例代码:
import java.util.HashMap;
import java.util.Map;
public class FindDuplicateStrings {
public static void main(String[] args) {
String[] strings = {"hello", "world", "hello", "java", "world"};
Map<String, Integer> stringCountMap = new HashMap<>();
for (String str : strings) {
if (stringCountMap.containsKey(str)) {
int count = stringCountMap.get(str);
stringCountMap.put(str, count + 1);
} else {
stringCountMap.put(str, 1);
}
}
for (Map.Entry<String, Integer> entry : stringCountMap.entrySet()) {
if (entry.getValue() > 1) {
System.out.println("重复字符串:" + entry.getKey());
}
}
}
}
执行以上代码,输出结果为:
重复字符串:hello
重复字符串:world