Map<String,Object> someVar = new HashMap<String,Object>();
最前边少了个Map,这个Map<String, Object>是 变量 someVar 的类型,Map是键值对类型,那个String代表键是String类型,Object代表值是Object类型。
比如:
someVar.put("hello", "world");
someVar.put("intValue", 23);
String world = (String) someVar.get("hello");
int intValue = (int) someVar.get("intValue");
相关文档:https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html
感谢回复,帮助了我理解what和how to use的问题,重要的是给了我一个文档地址~(虽然英文不及格,还是感谢!)