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

    //Animal 类
    package d922B;

    public class Animal {
    private String kind;
    private int legs,count;
    public String getKind() {
    return kind;
    }
    public void setKind(String kind) {
    this.kind = kind;
    }
    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;
    }

    }
    //Fish类
    package d922B;

    public class Fish extends Animal {
    private int count;

    public int getCount() {
    	return count;
    }
    
    public void setCount(int count) {
    	this.count = count;
    }
    

    }
    //Tiger类
    package d922B;

    public class Tiger extends Animal {
    private int count;

    public int getCount() {
    	return count;
    }
    
    public void setCount(int count) {
    	this.count = count;
    }
    

    }

  • 相关阅读:
    019_Mac实用的图像备份工具
    016_把普通用户免秘钥加入root用户的几种方式
    027_磁盘维护命令du等
    026_lsof命令经验总结
    004_wireshark专题
    029_mount bind挂载
    023_nginx跨域问题
    mysql-5.7 group commit 详解
    二段式提交协议
    mysql-5.7 密码过期详解
  • 原文地址:https://www.cnblogs.com/nicebaby/p/5901412.html
Copyright © 2011-2022 走看看