赞
踩
裁判测试程序样例中展示的是一段定义基类People
、派生类Student
以及测试两个类的相关Java代码,其中缺失了部分代码,请补充完整,以保证测试程序正常运行。
- 提示:
- 观察类的定义和main方法中的测试代码,补全缺失的代码。
注意:真正的测试程序中使用的数据可能与样例测试程序中不同,但仅按照样例中的格式调用相关方法(函数)。
- class People{
- private String id;
- private String name;
- public People(String id, String name) {
- this.id = id;
- this.name = name;
- }
- public String getId() {
- return id;
- }
- public String getName() {
- return name;
- }
- }
-
- class Student extends People{
- private String sid;
- private int score;
- public Student(String id, String name, String sid, int score) {
-
- /** 你提交的代码将被嵌在这里(替换此行) **/
-
- }
- public String toString(){
- return ("(Name:" + this.getName()
- + "; id:" + this.getId()
- + "; sid:" + this.sid
- + "; score:" + this.score
- + ")");
- }
-
- }
- public class Main {
- public static void main(String[] args) {
- Student zs = new Student("370202X", "Zhang San", "1052102", 96);
- System.out.println(zs);
-
- }
- }
在这里给出一组输入。例如:
(无)
(Name:Zhang San; id:370202X; sid:1052102; score:96)
- super(id, name);
- this.sid = sid;
- this.score = score;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。