Obsolete Members for QMultiMap
QMultiMap 클래스의 다음 멤버는 더 이상 사용되지 않습니다. 이들은 이전 소스 코드의 작동을 유지하기 위해 제공됩니다. 새 코드에서는 사용하지 않는 것이 좋습니다.
공용 함수
(deprecated) void | insert(const QMultiMap<Key, T> &map) |
(deprecated) void | insert(QMultiMap<Key, T> &&map) |
(deprecated) QMultiMap<Key, T>::iterator | insertMulti(const Key &key, const T &value) |
(deprecated) QMultiMap<Key, T>::iterator | insertMulti(QMultiMap<Key, T>::const_iterator pos, const Key &key, const T &value) |
(deprecated) std::multimap<Key, T> | toStdMap() const |
멤버 함수 문서
[deprecated]
void QMultiMap::insert(const QMultiMap<Key, T> &map)
이 함수는 더 이상 사용되지 않습니다. 새 코드에서 이 함수를 사용하지 않는 것이 좋습니다.
대신 unite()를 사용하세요.
map 의 모든 항목을 이 맵에 삽입합니다.
[deprecated]
void QMultiMap::insert(QMultiMap<Key, T> &&map)
이 함수는 더 이상 사용되지 않습니다. 새 코드에서 이 함수를 사용하지 않는 것이 좋습니다.
대신 unite()를 사용하세요.
이 함수는 과부하가 걸린 함수입니다.
map 의 모든 항목을 이 맵으로 이동합니다.
map 을 공유하면 항목이 대신 복사됩니다.
[deprecated]
QMultiMap<Key, T>::iterator QMultiMap::insertMulti(const Key &key, const T &value)
이 함수는 더 이상 사용되지 않습니다. 새 코드에서 이 함수를 사용하지 않는 것이 좋습니다.
대신 insert()를 사용하세요.
key 키와 value 값으로 새 항목을 삽입하고 새 항목을 가리키는 이터레이터를 반환합니다.
[deprecated]
QMultiMap<Key, T>::iterator QMultiMap::insertMulti(QMultiMap<Key, T>::const_iterator pos, const Key &key, const T &value)
이 함수는 더 이상 사용되지 않습니다. 새 코드에서 이 함수를 사용하지 않는 것이 좋습니다.
대신 insert()를 사용하세요.
이 함수는 과부하가 걸린 함수입니다.
key 키와 값 value 및 삽입 위치를 제안하는 힌트 pos 를 사용하여 새 항목을 삽입합니다.
[deprecated]
std::multimap<Key, T> QMultiMap::toStdMap() const
이 함수는 더 이상 사용되지 않습니다. 새 코드에서 이 함수를 사용하지 않는 것이 좋습니다.
대신 toStdMultiMap()를 사용하세요.
이에 해당하는 STL 멀티 맵을 반환합니다 QMultiMap.
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.