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() を使用してください。

このQMultiMap と等価な STL マルチマップを返します。

© 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.