Me gustaría crear un map
que contenga entradas que constan de(int, Point2D)
¿Cómo puedo hacer esto en Java?
Intenté lo siguiente sin éxito.
HashMap hm = new HashMap();
hm.put(1, new Point2D.Double(50, 50));
Me gustaría crear un map
que contenga entradas que constan de(int, Point2D)
¿Cómo puedo hacer esto en Java?
Intenté lo siguiente sin éxito.
HashMap hm = new HashMap();
hm.put(1, new Point2D.Double(50, 50));
Respuestas:
Existe incluso una forma mejor de crear un mapa junto con la inicialización:
Map<String, String> rightHereMap = new HashMap<String, String>()
{
{
put("key1", "value1");
put("key2", "value2");
}
};
Para ver más opciones, eche un vistazo aquí. ¿Cómo puedo inicializar un mapa estático?
Java 9
public static void main(String[] args) {
Map<Integer,String> map = Map.ofEntries(entry(1,"A"), entry(2,"B"), entry(3,"C"));
}
Map.of(1, "A", 2, "B", 3, "C")
es mejor
java: cannot find symbol symbol: method of(java.lang.String,double) location: interface java.util.Map
java -version
openjdk 11.0.8 2020-07-14 OpenJDK Runtime Environment (build 11.0.8+10-post-Ubuntu-0ubuntu120.04) OpenJDK 64-Bit Server VM (build 11.0.8+10-post-Ubuntu-0ubuntu120.04, mixed mode, sharing)
Map<Integer, Point2D> hm = new HashMap<Integer, Point2D>();
Point2D.Double
no parece un Point2D
= \
Map<int, Point2D> hm = new HashMap<int, Point2D>()
, obtengo este error: Error de sintaxis en el token "int", Dimensiones esperadas después de este token.
Utilizo este tipo de población de mapas gracias a Java 9. En mi sincera opinión, este enfoque proporciona más legibilidad al código.
public static void main(String[] args) {
Map<Integer, Point2D.Double> map = Map.of(
1, new Point2D.Double(1, 1),
2, new Point2D.Double(2, 2),
3, new Point2D.Double(3, 3),
4, new Point2D.Double(4, 4));
map.entrySet().forEach(System.out::println);
}
Map<Integer, Double>