【LintCode-454】矩阵面积(Java实现)
程序员文章站
2022-03-24 17:37:32
...
第一次代码记录:
public class Rectangle {
private int width;
private int height;
public Rectangle(int width,int height){
this.width=width;
this.height=height;
}
public int getArea(){
return width*height;
}
}
个人解题思路:
考察java基础部分,构造方法,注意使用this.width与参数width区分开。
如果您有更好的解法,欢迎您在留言区补充,感谢!!