didi1234
2016-04-01 17:36
/**
* 用来承装学生类型对象
*/
public Map<String, Student> students;
/**
* 在构造器中初始化students属性
*/
public MapTest() {
this.students = new HashMap<String, Student>();
}
可以直接这样做吗?
public Map<String, Student> students =new HashMap<String, Student>();
我觉的可以 。。
一样,很多人都在小DEMO中直接用
不可以,不能直接实例化。
Java入门第三季
409792 学习 · 4340 问题
相似问题
回答 3
回答 3