课程
/后端开发
/Java
/Java入门第三季
这里的new Student为啥首字母大写呢?
2019-10-06
源自:Java入门第三季 6-4
正在回答
因为临时new了个Student类的对象。如果是小写只代表已经定义的对象,但这里是直接用
我是好奇这么绕的直接调用new Student(null,name)还有这种操作方法
森森0515 提问者
举报
Java中你必须懂得常用技能,不容错过的精彩,快来加入吧
3 回答containsValue(new Student(null,name)中为什么Student的ID对应值是空(null)呢
2 回答new Student(String id , String name)
1 回答studentList.add(new Student(1 + "","小明"));
2 回答this.students = new HashMap<String,Student>(); 这句该怎么理解?
2 回答if(st!=null) 这句不是多余的吗?