查看完整内容
在new对象时 会调用构造方法Rectangle(int width,int hight)创建对象
例如: Rectangle r= new Rectangle(20,30);
这样就把20赋值给了width 30赋值给了high
而且 width 和high属于成员变量 成员变量的特点:成员变量可以被类中方法所共享(相当于全局变量)
所以:在getLength方法中可以直接使用width和hight
public getLength(){
return 2*(width+hight)
}
...