Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java SE 综合讨论区 » 实战错误讨论  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 是继承出了错么???
xingchao





发贴: 32
积分: 0
于 2006-10-17 10:37 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
为什么这个程序编译后 报告
需要〈标示符〉24行
需要‘)’ 32行
是不是我的第二个继承用错了。
请各位帮帮忙

class People{
  String name;
  People(String name){
    this.name=name;
  }
  void show(){
    System.out.println("姓名是 "+name);
  }
}
class Teacher extends People{
  String department;
  Teacher(String name,String department){
    super(name);
    this.department=department;
  }
  void show(){
    super.show();
    System.out.println("所属部门 "+department);
  }
}
class TeacherAdviser extends Teacher{
  String grade;
  TeacherAdviser(String name,String,department,String grade){
    super(name,department);
    this.grade=grade;
  }
  void show(){
    super.show();
    System.out.println("级别 "+grade);
  }
}
public class PeopleText{
  public static void main(String[] args){
   TeacherAdviser t=new TeacherAdviser("张强","外语组","教授");
    t.show();
  }
}



作者 Re:是继承出了错么??? [Re:xingchao]
xingchao





发贴: 32
积分: 0
于 2006-10-17 10:40 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
不用了 我找到错误了
小小的失误
麻烦各位了




flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923