黑马程序员技术交流社区

标题: 构造函数 [打印本页]

作者: lostyou    时间: 2015-9-30 18:31
标题: 构造函数
class constructorDemo {
        public static void main(String[]args ){
                Rectangle r=new Rectangle(3,4);
                System.out.println(r.getPerimeter());
                System.out.println(r.getArea());
        }       
       
}
class Rectangle {
        private int wide;
        private int length;
        public Rectangle(int wide ,int length){
                this.wide=wide;
                this.length=length;
        }
        public void setWide(int wide){
                this.wide=wide;
        }
        public void setLength(int length){
                this.length=length;
        }
        public int getWide(){
                return wide;
        }
        public int getLength(){
                return length;
        }
        public int getPerimeter(){
                return (wide+length)<<1;
        }
        public int getArea(){
                return wide*length;
        }
}




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