黑马程序员技术交流社区

标题: 标准Javabean实现 [打印本页]

作者: MichaelLian    时间: 2016-4-15 21:46
标题: 标准Javabean实现
  1. class Test_Rectangle02 {
  2.         public static void main(String[] args) {
  3.                 Rectangle02 rec1=new Rectangle02();
  4.                 rec1.setHigh(3);
  5.                 rec1.setWidth(4);
  6.                 System.out.print("Circle is "+rec1.getCircle()+"  "+"Area is "+rec1.getArea());
  7.                 System.out.println();
  8.                 Rectangle02 rec2=new Rectangle02(5,6);
  9.                 rec2.show();
  10.         }
  11. }

  12. class Rectangle02{
  13.         private int high;
  14.         private int width;

  15.         public Rectangle02(){}
  16.         public Rectangle02(int high,int width){
  17.                 this.high=high;
  18.                 this.width=width;
  19.         }

  20.         public void setHigh(int high){
  21.                 this.high=high;
  22.         }
  23.         public void setWidth(int width){
  24.                 this.width=width;
  25.         }
  26.         public int getCircle(){
  27.                 return 2*(high+width);
  28.         }
  29.         public int getArea(){
  30.                 return high*width;
  31.         }

  32.         public void show(){
  33.                 System.out.print("High is "+high+"   "+"width is "+width);
  34.         }
  35. }
复制代码





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