public MapTest(){
this.students = new HashMap<String,Student>();
}
把当前对象的students指向一个HashMap对象,其实就是把students变成了Map的键值对形式了
是一个构造方法,通过该方法来新建students对象。