在Java中,可以使用Map接口來表示字典。Map接口提供了多個方法來獲取字典的值。
Map<String, Integer> dictionary = new HashMap<>();
dictionary.put("apple", 1);
dictionary.put("banana", 2);
dictionary.put("orange", 3);
int value = dictionary.get("apple"); // 獲取鍵"apple"對應的值
System.out.println(value); // 輸出:1
Map<String, Integer> dictionary = new HashMap<>();
dictionary.put("apple", 1);
dictionary.put("banana", 2);
dictionary.put("orange", 3);
Collection<Integer> values = dictionary.values(); // 獲取字典中所有的值
System.out.println(values); // 輸出:[1, 2, 3]
Map<String, Integer> dictionary = new HashMap<>();
dictionary.put("apple", 1);
dictionary.put("banana", 2);
dictionary.put("orange", 3);
Set<Map.Entry<String, Integer>> entrySet = dictionary.entrySet(); // 獲取字典中所有的鍵值對
for (Map.Entry<String, Integer> entry : entrySet) {
String key = entry.getKey(); // 獲取鍵
int value = entry.getValue(); // 獲取值
System.out.println(key + ": " + value);
}
以上是常用的幾種方法來獲取字典的值,根據具體需求可以選擇適合的方法來獲取字典的值。