构造方法 对象 方法
package imooc;
public class Glass {
double heigh;
double weight;
public static void main(String[] args){
System.out.println("33333");
Glass hello=new Glass();
Glass hello2=new Glass(2.3,4.5);
hello.Glass();
hello.Glass(4.3,5.4);
}
public Glass(){
System.out.println("无参的构造方法执行了");
}
public Glass(double newHeigh,double newWeight){
heigh =newHeigh;
weight =newWeight;
System.out.println("heigh"+heigh,"weight"+weight);
}
}
大家帮我看看这个代码??我不太明白那个对方法的调用?对象是必须要建立的吗?而方法调用不调用都可以?这里怎么调用不了呢?最后的输出的也不对。。。。