本帖最后由 doyxy 于 2014-3-24 10:28 编辑
看视频后发现是值写错了...应该加上HashMap<String,Student>,那就正常了,也能快速导入,真是晕死,
创建一个HashMap时,如果是只有两个键值对就可以正常快速导入,如果一个值也是一个键值对,就没法自动导入,这是为什么呢?
//HashMap<String, String> hm = new HashMap<String, String>(); //可以快速导入
HashMap<String, <String,Student>> hm1 = new HashMap<String, <String,Student>>(); //不能快速导入
还有就是为什么导包import java.util.HashMap;了提示下面的错误呢?
Syntax error on token ",", Type expected after this token
|