以下成員源於類 const_iterator 已過時。 提供它們是為使舊源代碼能繼續工作。強烈建議不要在新代碼中使用它們。
(obsolete)
const_iterator
|
operator+ (int j ) const |
(obsolete)
const_iterator &
|
operator+= (int j ) |
(obsolete)
const_iterator
|
operator- (int j ) const |
(obsolete)
const_iterator &
|
operator-- () |
(obsolete)
const_iterator
|
operator-- ( int ) |
(obsolete)
const_iterator &
|
operator-= (int j ) |
此函數已過時。提供它是為使舊源代碼能繼續工作。強烈建議不要在新代碼中使用它。
This operator is deprecated in order to align with std::unordered_map functionality.
Returns an iterator to the item at j positions forward from this iterator. (If j is negative, the iterator goes backward.)
This operation can be slow for large j 值。
另請參閱 operator- ().
此函數已過時。提供它是為使舊源代碼能繼續工作。強烈建議不要在新代碼中使用它。
This operator is deprecated in order to align with std::unordered_map functionality.
推進迭代器 j items. (If j is negative, the iterator goes backward.)
This operation can be slow for large j 值。
另請參閱 operator-= () 和 operator+ ().
此函數已過時。提供它是為使舊源代碼能繼續工作。強烈建議不要在新代碼中使用它。
This operator is deprecated in order to align with std::unordered_map functionality.
Returns an iterator to the item at j positions backward from this iterator. (If j is negative, the iterator goes forward.)
This operation can be slow for large j 值。
另請參閱 operator+ ().
此函數已過時。提供它是為使舊源代碼能繼續工作。強烈建議不要在新代碼中使用它。
This operator is deprecated in order to align with std::unordered_map functionality.
The prefix -- operator (
--i
) makes the preceding item current and returns an iterator pointing to the new current item.
Calling this function on QHash::begin () leads to undefined results.
另請參閱 operator++ ().
此函數已過時。提供它是為使舊源代碼能繼續工作。強烈建議不要在新代碼中使用它。
This operator is deprecated in order to align with std::unordered_map functionality.
這是重載函數。
The postfix -- operator (
i--
) makes the preceding item current and returns an iterator pointing to the previously current item.
此函數已過時。提供它是為使舊源代碼能繼續工作。強烈建議不要在新代碼中使用它。
This operator is deprecated in order to align with std::unordered_map functionality.
Makes the iterator go back by j items. (If j is negative, the iterator goes forward.)
This operation can be slow for large j 值。
另請參閱 operator+= () 和 operator- ().