在程序中,创建新的学生对象:Student newStudent=new Student(ID,name);这句代码中可不可以将Student换成students一直没有弄清Student和student分别是是什么意思和区别。
感谢!
Student 是一个类,而students是一个集合,创建一个Student对象,然后通过put加入到students中,
我记得students是一个map吧?Student是学生类。