示例#1
0
 /**
  * Releases the element currently stored at <tt>index</tt>.
  *
  * @param index an <code>int</code> value
  */
 protected void removeAt(int index) {
   _set[index] = no_entry_value;
   super.removeAt(index);
 }
 /**
  * Releases the element currently stored at <tt>index</tt>.
  *
  * @param index an <code>int</code> value
  */
 @Override
 protected void removeAt(int index) {
   _set[index] = no_entry_key;
   super.removeAt(index);
 }