java程序填空题!!!设计一个学生类Student,其属性有name(姓名)、age(年龄)和degree(学位)。

由Student类派生出本科生类Undergraduate和研究生类Graduate,Undergraduate类增加属性specialty(专业),Graduate类增... 由Student类派生出本科生类Undergraduate和研究生类Graduate,Undergraduate类增加属性specialty(专业),Graduate类增加属性direction(研究方向)。每个类都有show()方法,用于输出属性信息。

/*…源代码…*/
public class exp1401 {
public static void main(String[] args) {
Undergraduate stu1=new Undergraduate("张三",23,"本科","工业自动化");
Graduate stu2=new Graduate("李四",27,"硕士","网络技术");
stu1.show();
stu2.show();
}
}
输出:
姓名:张三,年龄:23,学位:本科,专业:工业自动化
姓名:李四,年龄:27,学位:硕士,研究方向:网络技术
展开
 我来答
liuyang054
2016-05-25 · TA获得超过9093个赞
知道大有可为答主
回答量:5317
采纳率:78%
帮助的人:5316万
展开全部
class Student{
private String name;
private int age;
private String degree;
public Student(String name, int age, String degree) {
super();
this.name = name;
this.age = age;
this.degree = degree;
}
public Student() {
super();
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getDegree() {
return degree;
}
public void setDegree(String degree) {
this.degree = degree;
}
public void show(){
System.out.println("姓名:" + this.getName() + ". 年龄:" + this.getAge() + ". 学位:" + this.getDegree() );
}
}

class Undergraduate extends Student{
private String specialty;

public String getSpecialty() {
return specialty;
}

public void setSpecialty(String specialty) {
this.specialty = specialty;
}

public Undergraduate(String name, int age, String degree, String specialty) {
super(name, age, degree);
this.specialty = specialty;
}

public Undergraduate(String name, int age, String degree) {
super(name, age, degree);
}

public void show(){
System.out.println("姓名:" + this.getName() + ". 年龄:" + this.getAge() + ". 学位:" + this.getDegree() + ". 专业:" + this.getSpecialty());
}
}

class Graduate extends Student{
private String direction;

public String getDirection() {
return direction;
}

public void setDirection(String direction) {
this.direction = direction;
}

public Graduate(String name, int age, String degree, String direction) {
super(name, age, degree);
this.direction = direction;
}

public Graduate(String name, int age, String degree) {
super(name, age, degree);
}
public void show(){
System.out.println("姓名:" + this.getName() + ". 年龄:" + this.getAge() + ". 学位:" + this.getDegree() + ". 研究方向:" + this.getDirection());
}
}
public class exp1401 {
public static void main(String[] args) {
Undergraduate stu1=new Undergraduate("张三",23,"本科","工业自动化");
        Graduate stu2=new Graduate("李四",27,"硕士","网络技术");
        stu1.show();
        stu2.show();
}
}

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式