コード例 #1
0
 public void put(int n) {
   alloc_.put(n);
   hiredout -= n;
   available += n;
   display();
 }
コード例 #2
0
 public void get(int n) throws InterruptedException {
   alloc_.get(n);
   available -= n;
   hiredout += n;
   display();
 }