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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

class Dome {
  public void root() {
    String sSite = "土壤中";
    String sFunction = "吸收养份";
    print("位置:"+sSite);
    print("功能:"+sFunction);
  }

  public void bolo() {
    String sSite = "地面";
    String sFunction = "传递养份";
    print("位置:"+sSite);
    print("功能:"+sFunction);
  }

  public void branch() {
    String sSite = "树干上";
    String sFunction = "传递养份";
    print("位置:"+sSite);
    print("功能:"+sFunction);
  }

  public void leaf() {
    String sSite = "树梢";
    String sFunction = "光合作用";
    String sColor = "绿色";
    print("位置:"+sSite);
    print("功能:"+sFunction);
    print("颜色:"+sColor);
  }

  public void print(Object oPara) {
    System.out.println(oPara);
  }

  public static void  main(String[] arges) {
    tree t = new tree();
    t.print("描述一棵树:");
    t.print("树根:");
    t.root();
    t.print("树干:");
    t.bolo();
    t.print("树枝:");
    t.branch();
    t.print("树叶:");
    t.leaf();
  }
}

class osier extends tree {

  public void leaf() {
    super.leaf();
    String sShape = "长形";
    super.print("形状:"+sShape);
  }

  public void flower() {
    print("哈哈,柳树没有花!!");
  }

  public static void  main(String[] args) {
    osier o = new osier();
    o.print("柳树树根:");
    o.root();
    o.print("柳树树干:");
    o.bolo();
    o.print("柳树树枝:");
    o.branch();
    o.print("柳树树叶:");
    o.leaf();
    o.print("柳树花:");
    o.flower();
  }
}

0 个回复

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