构造方法中的问题
为什么在主函数中直接实例化对像后就能直接打印构造方法中的输出语句?对于有参的构造方法,为什么要这样做
public class InterPhone {
public static void main(String[] args) {
// TODO Auto-generated method stub
Telephone phone1=new Telephone();
Telephone phone2=new Telephone(5.0f,1.4f,2.0f);
}
}
才能打印有参构造方法中的输出语句