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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© hutudan1993 中级黑马   /  2015-8-29 22:00  /  152 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

class Demo3_Rectangle {
        public static void main(String[] args) {
                        Rectangle r=new Rectangle(20,30);
                        System.out.println(r.getLength());
                        System.out.println(r.getArea());
        }
}

class Rectangle {             //定义一个类
                private int width;
                private int high;
                public Rectangle (){           //定义 一个无参的构造函数
                }
                public Rectangle(int width,int high) {        //定义一个有参的构造函数
                                this.width=width;
                                this.high=high;
                }
                public void setWidth(int width){             //给width赋值
                                this.width=width;
                }
                public int getWidth(){                        //获取值
                                return width;
                }
                public void setHigh(int high){
                                this.high=high;
                }
                public int getHigh(){
                                return high;
                }
                public int getLength(){
                                return (width+high)*2;
                }
                public int getArea(){
                                return width*high;
                }
}

0 个回复

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