示例#1
0
 public RoughTime plus(TimeUnit unit, int times) {
   RoughTime r = copy();
   unit.addTo(r, times);
   return r;
 }