问答详情
源自:5-2 学生选课---使用 Map 添加学生

this.students = new HashMap<String,Student>(); 这句该怎么理解?

public MapTest(){

this.students = new HashMap<String,Student>();

}


提问者:克里斯缇娜 2016-03-22 15:58

个回答

  • qq_Suchafruitca_0
    2016-03-22 17:07:46

    把当前对象的students指向一个HashMap对象,其实就是把students变成了Map的键值对形式了

  • DXGood
    2016-03-22 16:50:26

    是一个构造方法,通过该方法来新建students对象。