예제 #1
0
파일: HeapFile.java 프로젝트: DragonZ/cs448
 private int amount(HFPage hf) {
   RID temp = hf.firstRecord();
   int amount = 0;
   while (temp != null) {
     temp = hf.nextRecord(temp);
     amount++;
   }
   return amount;
 }