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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

class Test5_Animal {
        public static void main(String[] args) {
                Cat c1 = new Cat("花",4);
                System.out.println(c1.getColor() + "..." + c1.getLeg());
                c1.eat();
                c1.catchMouse();

                Dog d1 = new Dog("黑",2);
                System.out.println(d1.getColor() + "..." + d1.getLeg());
                d1.eat();
                d1.lookHome();
        }
}


class Animal {
        private String color;                                       
        private int leg;                                               

        public Animal(){}

        public Animal(String color,int leg) {
                this.color = color;
                this.leg = leg;
        }

        public void setColor(String color) {       
                this.color = color;
        }

        public String getColor() {                               
                return color;
        }

        public void setLeg(int leg) {                       
                this.leg = leg;
        }

        public int getLeg() {                                       
                return leg;
        }

        public void eat() {                                               
                System.out.println("吃饭");
        }
}

class Cat extends Animal {
        public Cat() {}                                                       

        public Cat(String color,int leg) {               
                super(color,leg);
        }

        public void eat() {                                               
                System.out.println("猫吃鱼");
        }

        public void catchMouse() {                               
                System.out.println("抓老鼠");
        }
}

class Dog extends Animal {
        public Dog() {}                                                       

        public Dog(String color,int leg) {               
                super(color,leg);
        }

        public void eat() {                                               
                System.out.println("狗吃肉");
        }

        public void lookHome() {                               
                System.out.println("看家");
        }
}

马上就用eclipse了,要脱离痛苦的码基础代码的流程了,还有点小激动呢!希望与大家多多交流!

0 个回复

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