问答详情
源自:6-4 学生选课---判断 Map 中是否包含指定的 key 和 value

if(students.containsValue(new Student(null,name))) {

这里的new Student为啥首字母大写呢?

提问者:森森0515 2019-10-06 19:06

个回答

  • 慕无忌8817699
    2019-11-12 21:46:26
    已采纳

    因为临时new了个Student类的对象。如果是小写只代表已经定义的对象,但这里是直接用

    我是好奇这么绕的直接调用new Student(null,name)还有这种操作方法