在Java中,字典可以使用Java集合框架中的HashMap或TreeMap實現。下面是使用HashMap的示例:
import java.util.HashMap;
import java.util.Map;
public class DictionaryExample {
public static void main(String[] args) {
// 創建一個新的字典
Map<String, String> dictionary = new HashMap<>();
// 添加鍵值對到字典中
dictionary.put("apple", "蘋果");
dictionary.put("banana", "香蕉");
dictionary.put("orange", "橙子");
// 獲取字典中的值
String appleTranslation = dictionary.get("apple");
System.out.println("apple的翻譯是:" + appleTranslation);
// 檢查字典中是否包含某個鍵
boolean containsBanana = dictionary.containsKey("banana");
System.out.println("字典中是否包含banana:" + containsBanana);
// 刪除字典中的鍵值對
dictionary.remove("orange");
// 迭代字典中的所有鍵值對
for (Map.Entry<String, String> entry : dictionary.entrySet()) {
String key = entry.getKey();
String value = entry.getValue();
System.out.println(key + "的翻譯是:" + value);
}
}
}
輸出結果:
apple的翻譯是:蘋果
字典中是否包含banana:true
apple的翻譯是:蘋果
banana的翻譯是:香蕉