原型模式

public class Main {
   public static void main(String args[])
   {
  Resume a=new Resume("大鸟");
     a.SetPersonalInfo("男", "29");
     a.SetWorkExperience("1998-2000", "XX公司");
     Resume b=(Resume)a.Clone();
     b.SetWorkExperience("1998-2006", "YY企业");
     Resume c=(Resume)a.Clone();
     c.SetPersonalInfo("男", "24");
     a.Display();
     b.Display();
     c.Display();
 }
}
class Resume implements Cloneable{
 private String name;
 private String sex;
 private String age;
 private String timeArea;
 private String company;
 public Resume(String name) {
  this.name=name;
 }
 public void SetPersonalInfo(String sex,String age) {
  this.age=age;
  this.sex=sex;
 }
 public void SetWorkExperience(String timeArea,String company) {
  this.timeArea=timeArea;
  this.company=company;
 }
 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 String getAge() {
  return age;
 }
 public void setAge(String age) {
  this.age = age;
 }
 public String getTimeArea() {
  return timeArea;
 }
 public void setTimeArea(String timeArea) {
  this.timeArea = timeArea;
 }
 public String getCompany() {
  return company;
 }
 public void setCompany(String company) {
  this.company = company;
 }
 public void Display() {
  System.out.println(getName()+" "+getSex()+" "+getAge());
  System.out.println("工作经历"+" "+getTimeArea()+" "+getCompany());
 }
 public Object Clone() {
  try {
   return super.clone();
  }catch(CloneNotSupportedException e) {
   e.printStackTrace();
  }
  return null;
 }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值