removeFirst 方法
重写
从队列中移除并返回第一个元素。
当调用此方法时,队列不得为空。
实现
E removeFirst() {
if (_head == _tail) throw IterableElementError.noElement();
_modificationCount++;
E result = _table[_head] as E;
_table[_head] = null;
_head = (_head + 1) & (_table.length - 1);
return result;
}