Exemple #1
0
 //============================================================
 // <T>设置内容。</T>
 //
 // @param index 索引位置
 // @param next 下一个对象
 //============================================================
 public void Set(int index, FHashEntry next)
 {
     Index = index;
     Next  = next;
 }
Exemple #2
0
 //============================================================
 // <T>构造哈希入口对象。</T>
 //
 // @param hash 哈希值
 // @param index 索引位置
 // @param next 下一个对象
 //============================================================
 public FHashEntry(int hash, int index, FHashEntry next)
 {
     Hash  = hash;
     Index = index;
     Next  = next;
 }