某公司正进行招聘工作,被招聘人员需要填写个人信息,编写“个人简历”的封装类Resume,并编写测试类进行实现。类图及输出效果如下。
类名:Resume |
---|
name : String (private) |
sex : String (private) |
age : int (private) |
Resume( ) // 没有参数的空构造方法 |
Resume(Srting name, String sex, int age) // 得到各个属性值的方法getXxx( ) |
introduce( ) : void // 自我介绍(利用属性) |
程序运行结果如下:
我是:李四
性别:男
年龄:20
class Resume {
private String name;
private String sex;
private int age;
public Resume() {
}
public Resume(String name, String sex, int age) {
this.name = name;
this.sex = sex;
this.age = age;
}
public String getName() {
return name;
}
public String getSex() {
return sex;
}
public int getAge() {
return age;
}
public void introduce() {
System.out.println("姓名:" + this.getName() + "\n性别:" + this.getSex() + "\n年龄:" + this.getAge());
}
}
public class Example04 {
public static void main(String[] args) {
Resume re = new Resume("李四", "男", 20);
re.introduce();
}
}