QVariant::ConstPointer Class
template <typename Indirect> class QVariant::ConstPointerQVariant::ConstPointer は、QVariant への const ポインタをエミュレートするテンプレート・クラスです。詳細...
このクラスは Qt 6.11 で導入されました。
パブリック関数
| ConstPointer(Indirect &&pointed) | |
| ConstPointer(const Indirect &pointed) | |
| QVariant::ConstReference<Indirect> | operator*() const |
詳細説明
QVariant::ConstPointer ポインタされた値をラップし、operator*() からQVariant::ConstReference を返します。そのため、実際のポインタの代わりとして適しています。ジェネリック・イテレータは実際のポインタQVariant を保持しないので、ジェネリック・イテレータから実際のポインタを返すことはできません。
メンバ関数ドキュメント
[explicit noexcept(...)] ConstPointer::ConstPointer(Indirect &&pointed)
値pointed からQVariant::ConstPointer を構築する。
注: std::is_nothrow_move_constructible_v<Indirect> がtrue のとき、この関数は noexcept となる。
[explicit noexcept(...)] ConstPointer::ConstPointer(const Indirect &pointed)
値pointed からQVariant::ConstPointer を構築する。
注: std::is_nothrow_copy_constructible_v<Indirect> がtrue のとき、この関数は noexcept となる。
[noexcept(...)] QVariant::ConstReference<Indirect> ConstPointer::operator*() const
QVariant::ConstPointer をQVariant::ConstReference にデリファレンスする。
注意: この関数は、std::is_nothrow_copy_constructible_v<Indirect> がtrue の場合は noexcept となる。
© 2026 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.