黑马程序员技术交流社区

标题: 今天的上课案例 [打印本页]

作者: ZhengJX    时间: 2015-9-21 21:43
标题: 今天的上课案例
长方形类的案例
  1. class Test3 {
  2.         public static void main(String[] args) {
  3.                 Rectangle r = new Rectangle();
  4.                 r.setLength(14);
  5.                 r.setWide(20);
  6.                 System.out.println(r.getZhouChang());
  7.                 System.out.println(r.getMianJi());
  8.         }
  9. }

  10. class Rectangle {
  11.         private int length;
  12.         private int wide;

  13.         public Rectangle() {}
  14.         public Rectangle(int length,int wide) {
  15.                 this.length = length;
  16.                 this.wide = wide;
  17.         }
  18.         public void setLength(int length) {
  19.                 this.length = length;
  20.         }
  21.         public int getLength() {
  22.                 return length;
  23.         }
  24.         public void setWide(int wide) {
  25.                 this.wide = wide;
  26.         }
  27.         public int getWide() {
  28.                 return wide;
  29.         }
  30.         public int getZhouChang(){
  31.                 return (wide+length)*2;
  32.         }
  33.         public int getMianJi(){
  34.                 return wide*length;
  35.         }
  36. }
复制代码

作者: maxwell247    时间: 2015-9-21 21:54
这里体现了封装的思想。重载了构造方法,用到了this代表本类对象。
作者: outxf003    时间: 2015-9-21 23:10
我们班的啊{:2_30:}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2