• 编写Java应用程序,定义Animal类,此类中有动物的属性:名称 name,腿的数量legs,统计动物的数量 count;方法:设置动物腿数量的方法 void setLegs(),获得腿数量的方法 getLegs(),设置动物名称的方法 setKind(),获得动物名称的方法 getKind(),获得动物数量的方法 getCount()。定义Fish类,是Animal类的子类,统计鱼的数量 co


    package com.hanqi.test;
    
    public class Animal {
        private String name;
        private int legs;
        private int count;
        public String getKind() {
            return name;
        }
        public void setKind(String name) {
            this.name = name;
        }
        public int getLegs() {
            return legs;
        }
        public void setLegs(int legs) {
            this.legs = legs;
        }
        public int getCount() {
            return count;
        }
        public void setCount(int count) {
            this.count = count;
        }
    }
    package com.hanqi.test;
    
    public class Fish extends Animal {
        
    
    }
    package com.hanqi.test;
    
    public class Tiger extends Animal {
    
    }
    package com.hanqi.test;
    
    public class SouthEastTiger extends Tiger {
    
    }
    package com.hanqi.test;
    
    public class Test02 {
    
        public static void main(String[] args) {
            Rect re=new Rect();
            re.setA(20);
            re.setB(30);
            re.getArea();
            
            Circle cc=new Circle(30);
            
            System.out.println("radius=30圆 的面积是:"+cc.getArea());
            
            SouthEastTiger set= new SouthEastTiger();
            set.setCount(20);
            System.out.println("SouthEastTiger的数量是:"+set.getCount());
            Tiger t=new Tiger();
            t.setCount(15);
            System.out.println("tiger的数量是:"+t.getCount());
    
        }
    
    }

  • 相关阅读:
    关于托管存储过程的部署, 调试和性能
    Fast Fourier Transform in C# (CookyTurkey)
    The Story of Lena(.tiff)
    反射之反思(转)
    分享Oracle9i中建立自增字段的最新办法
    C#操作注册表
    Oracle服务器的常用命令行详细讲解
    为汶川受灾群众祈福!!!!!
    新的开始,新的起点
    完全删除Oracle数据库的方法
  • 原文地址:https://www.cnblogs.com/diaozhaojian/p/5897496.html
Copyright © 2020-2023  润新知