Java 默认构造函数
2022-08-31 06:46:50
						究竟什么是默认构造函数 — 您能告诉我以下哪一个是默认构造函数,以及它与任何其他构造函数的区别是什么吗?
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;
}
 
					 
				 
				    		 
				    		 
				    		