美文网首页
苍蝇有" + legs + "条腿

苍蝇有" + legs + "条腿

作者: 哈迪斯Java | 来源:发表于2023-06-07 23:58 被阅读0次

    interface Flyable {
    void fly();
    }

    abstract class Insect {
    int legs;

    public Insect(int legs) {
        this.legs = legs;
    }
    
    abstract void reproduce();
    

    }

    class Fly extends Insect implements Flyable {
    public Fly(int legs) {
    super(legs);
    System.out.println("苍蝇有" + legs + "条腿。");
    }

    @Override
    public void fly() {
        System.out.println("苍蝇可以在空中飞行。");
    }
    
    @Override
    void reproduce() {
        System.out.println("苍蝇的繁殖方式是产卵。");
    }
    

    }

    public class Test {
    public static void main(String[] args) {
    Fly fly = new Fly(6);
    fly.fly();
    fly.reproduce();
    }
    }

    相关文章

      网友评论

          本文标题:苍蝇有" + legs + "条腿

          本文链接:https://www.haomeiwen.com/subject/cqvhddtx.html