[Java] 纯文本查看 复制代码
public class Student implements Cloneable{
private Date birthday;
public Student() {}
public Student(Date birthday) {
this.birthday = birthday;
}
public Date getBirthday() {
return birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
@Override
protected Object clone() throws CloneNotSupportedException {
return super.clone();
}
}