黑马程序员技术交流社区
标题:
今天的上课案例
[打印本页]
作者:
ZhengJX
时间:
2015-9-21 21:43
标题:
今天的上课案例
长方形类的案例
class Test3 {
public static void main(String[] args) {
Rectangle r = new Rectangle();
r.setLength(14);
r.setWide(20);
System.out.println(r.getZhouChang());
System.out.println(r.getMianJi());
}
}
class Rectangle {
private int length;
private int wide;
public Rectangle() {}
public Rectangle(int length,int wide) {
this.length = length;
this.wide = wide;
}
public void setLength(int length) {
this.length = length;
}
public int getLength() {
return length;
}
public void setWide(int wide) {
this.wide = wide;
}
public int getWide() {
return wide;
}
public int getZhouChang(){
return (wide+length)*2;
}
public int getMianJi(){
return wide*length;
}
}
复制代码
作者:
maxwell247
时间:
2015-9-21 21:54
这里体现了封装的思想。重载了构造方法,用到了this代表本类对象。
作者:
outxf003
时间:
2015-9-21 23:10
我们班的啊{:2_30:}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2