日期:2014-05-20 浏览次数:20715 次
import java.util.Date; public final class Schedule { private final Date start; //开学时间,不允许被修改 private final Date end; //放假时间,不允许被修改 public Schedule(Date start,Date end){ if(start.compareTo(end)>0) throw new IllegalArgumentException(start+" after "+end); this.start=start; this.end=end; } public Date getStart(){ return start; } public Date getEnd() { return end; } }
import java.util.Date; public final class Schedule { private final Date start; private final Date end; public Schedule(Date start,Date end) { if(start.compareTo(end)>0) throw new IllegalArgumentException(start+" after "+end); this.start=new Date(start.getTime()); //采用保护性拷贝 this.end=new Date(end.getTime()); //采用保护性拷贝 } public Date getStart() { return (Date)start.clone(); //采用保护性拷贝 } public Date getEnd() { return (Date)end.clone(); //采用保护性拷贝 } }