以下成员源于类 key_iterator 已过时。 提供它们是为使旧源代码能继续工作。强烈建议不要在新代码中使用它们。
(obsolete)
key_iterator &
|
operator-- () |
(obsolete)
key_iterator
|
operator-- ( int ) |
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
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::keyBegin () 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 previous item.