Java默认构造函数默认构造函数到底是什么?你能告诉我下列哪一个是默认构造函数,它与任何其他构造函数有什么不同?public Module() {
this.name = "";
this.credits = 0;
this.hours = 0;}public Module(String name, int credits, int hours) {
this.name = name;
this.credits = credits;
this.hours = hours;}
添加回答
举报
0/150
提交
取消