用java编写两个类,person和student, Person类有三个成员变量name,sex,age,一个构造方法实现对其成员变
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用java编写两个类,person和student, Person类有三个成员变量name,sex,age,一个构造方法实现对其成员变相关的知识,希望对你有一定的参考价值。
分别编写两个类,Person,Student,使其满足下列要求
1、 Person类有三个成员变量name,sex,age,一个构造方法实现对其成员变量的初始化,一个showMe方法显示人员信息;name,sex,age。
2、 Student类是Person类的直接子类,Student类有两个成员变量department(系别),specialty(专业),一个构造方法实现对其成员变量的初始化,一个ShowStudent方法显示学生信息:name,sex.age,department,specialty
3、 要求在屏幕终端输出如下学生信息:
姓名:王明,性别:男,年龄:18,系别:经管系,专业:电子商务
package com.openwan.util;
public class Person
private String name;
private String sex;
private int age;
public String getName()
return name;
public void setName(String name)
this.name = name;
public String getSex()
return sex;
public void setSex(String sex)
this.sex = sex;
public int getAge()
return age;
public void setAge(int age)
this.age = age;
public Person ()
this.setAge(10);
this.setName("大师兄");
this.setSex("哥");
public void showMe()
System.out.println("姓名:"+this.getName() + ",性别:" + this.getSex() + ",年龄:" + this.getAge());
//第二个类
package com.openwan.util;
public class Student extends Person
private String department ;
private String specialty;
public String getDepartment()
return department;
public void setDepartment(String department)
this.department = department;
public String getSpecialty()
return specialty;
public void setSpecialty(String specialty)
this.specialty = specialty;
public Student ()
this.setDepartment("经管系");
this.setSpecialty("电子商务");
public void ShowStudent ()
showMe();
System.out.println("系别:"+this.getDepartment()+",专业:"+this.getSpecialty());
public static void main(String[] args)
Student s = new Student();
s.ShowStudent();
随便写了一下,不知是否你想要的
参考技术A 有偿给你写,需要的话继续追问以上是关于用java编写两个类,person和student, Person类有三个成员变量name,sex,age,一个构造方法实现对其成员变的主要内容,如果未能解决你的问题,请参考以下文章
求JAVA大神!!!编写两个类Person和TestPerson
设计Person类和Student类,Student类继承自Person类,要求写出两个类的无参和有参的构造函数,设计两个类
编写一个类Person,为Person类定义年龄、姓名两个属性
继承与派生类Circle and Rectangle和The Person, Student, Employee, Faculty and Staff Class