要找出重復的字符串,可以使用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