在Java中,可以使用以下代码创建一个HashMap集合:
import java.util.HashMap;
public class Main {
public static void main(String[] args) {
// 创建HashMap集合
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到HashMap集合
hashMap.put("A", 1);
hashMap.put("B", 2);
hashMap.put("C", 3);
// 打印HashMap集合
System.out.println(hashMap);
}
}
在上述代码中,首先导入java.util.HashMap
类。然后,在main
方法中创建了一个名为hashMap
的HashMap集合。使用put
方法将键值对添加到HashMap集合中。最后,通过打印HashMap集合,可以看到集合中的元素。
请注意,在创建HashMap集合时,可以指定键的类型和值的类型。在上述代码中,使用了HashMap<String, Integer>
来创建一个键为String类型、值为Integer类型的HashMap集合。