このページでは

QVariant::ConstPointer Class

template <typename Indirect> class QVariant::ConstPointer

QVariant::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::ConstPointerQVariant::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.