有参数构造方法的定义??
2.如果定义了有参数的构造方法,我们在主函数中想调用一个类中的方法而定义一个对象时难道即使不用参数也要加上参数吗?
比如说有一个类 public class Telephone(){
public void func(){####}
public Telephone(int a,float b){####}
}
然后在main函数中想调用func方法
Telephone mun=new Telephone()还是Telephone mun=new Telephone(x,yf)(x,y随便取的)
请哪位大神帮我分析一下我哪里想错了?