• 编写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());
    
        }
    
    }

  • 相关阅读:
    SignalR + MVC5 简单示例
    SignalR 简单示例
    Web API 简单示例
    Windows Azure 使用体验
    SQL Server 2014 安装小记
    SSRS 迁移
    SSH配置(同一服务器不同用户)
    【6】Zookeeper脚本及API
    【3】Kafka安装及部署
    【2】Kafka概念及原理
  • 原文地址:https://www.cnblogs.com/diaozhaojian/p/5897496.html
Copyright © 2020-2023  润新知