class A{
//HashMap Hash=new HashMap();//放在这就有问题
//Hash.put("001",new Person())
public static void main(String args []){
**HashMap Hash=new HashMap(); //放在这就没问题
**Hash.put("001",new Person())
}
}
这是为什么呢
后来我有改成这样也不行!我的基础不是很扎实,课程太快,没法对基础进行细致的专研,还忘指点
class A{
HashMap Hash=new HashMap();
Hash.put("001",new Person())
public static void main(String args []){
A a=new A();
}
}