A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© MichaelLian 中级黑马   /  2016-4-15 21:46  /  384 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  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. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马