const_iterator Class
class QJsonArray::const_iteratorQJsonArray::const_iterator クラスは、QJsonArray 用の STL スタイルの const イテレータを提供します。さらに...
このクラスは強く比較可能です。
このクラスはQJsonArray::iterator と強く比較可能である。
パブリック・タイプ
パブリック関数
const_iterator() | |
const_iterator(const QJsonArray::iterator &other) | |
const QJsonValueConstRef | operator*() const |
QJsonArray::const_iterator | operator+(qsizetype j) const |
QJsonArray::const_iterator & | operator++() |
QJsonArray::const_iterator | operator++(int) |
QJsonArray::const_iterator & | operator+=(qsizetype j) |
qsizetype | operator-(QJsonArray::const_iterator other) const |
QJsonArray::const_iterator | operator-(qsizetype j) const |
QJsonArray::const_iterator & | operator--() |
QJsonArray::const_iterator | operator--(int) |
QJsonArray::const_iterator & | operator-=(qsizetype j) |
const QJsonValueConstRef * | operator->() const |
QJsonValueConstRef | operator[](qsizetype j) const |
非会員
bool | operator!=(const QJsonArray::const_iterator &lhs, const QJsonArray::const_iterator &rhs) |
bool | operator<(const QJsonArray::const_iterator &lhs, const QJsonArray::const_iterator &rhs) |
bool | operator<=(const QJsonArray::const_iterator &lhs, const QJsonArray::const_iterator &rhs) |
bool | operator==(const QJsonArray::const_iterator &lhs, const QJsonArray::const_iterator &rhs) |
bool | operator>(const QJsonArray::const_iterator &lhs, const QJsonArray::const_iterator &rhs) |
bool | operator>=(const QJsonArray::const_iterator &lhs, const QJsonArray::const_iterator &rhs) |
詳細説明
QJsonArray::const_iterator を使用すると、 を反復処理できます。 を反復処理しながら変更したい場合は、代わりに を使用してください。イテレータを通して を変更する必要がない限り、 を非 const にも使用するのが一般的です。constイテレータの方が若干高速で、コードの可読性も向上します。QJsonArray QJsonArray QJsonArray::iterator QJsonArray QJsonArray::const_iterator QJsonArray
デフォルトのQJsonArray::const_iterator コンストラクタは、初期化されていないイテレータを作成します。QJsonArray::constBegin ()、QJsonArray::constEnd ()、QJsonArray::insert ()のようなQJsonArray 関数を使用して初期化しなければなりません。
ほとんどのQJsonArray 関数は、イテレータではなく整数インデックスを受け付けます。そのため、QJsonArray に関しては、イテレータはほとんど役に立ちません。STLスタイルのイテレータが意味を持つ場所の1つは、generic algorithms への引数です。
同じ配列に対して複数のイテレータを使用することができます。ただし、QJsonArray に対して const でない関数を呼び出すと、既存のすべてのイテレータが未定義になることに注意してください。
QJsonArray::iteratorも参照して ください。
メンバ型ドキュメント
const_iterator::iterator_category
std::random_access_iterator_tagのシノニムで、このイテレータがランダムアクセスイテレータであることを示す。
メンバ関数ドキュメント
const_iterator::const_iterator()
初期化されていないイテレータを構築します。
operator*() や operator++() のような関数は、初期化されていないイテレータに対して 呼び出すべきではありません。operator=() を使用して値を代入してから使用してください。
QJsonArray::constBegin() およびQJsonArray::constEnd()も参照して ください。
const_iterator::const_iterator(const QJsonArray::iterator &other)
other のコピーを構築します。
const QJsonValueConstRef const_iterator::operator*() const
現在の項目を返します。
QJsonArray::const_iterator const_iterator::operator+(qsizetype j) const
このイテレータからj 先方の位置の項目へのイテレータを返します。j が負の場合、イテレータは後方に進みます。
operator-() およびoperator+=()も参照 。
QJsonArray::const_iterator &const_iterator::operator++()
++
の前置演算子++it
は、イテレータを配列の次の項目に進め、新しい現在の項目へのイテレータを返します。
この関数をQJsonArray::end() で呼び出すと、未定義の結果になります。
operator--()も参照してください 。
QJsonArray::const_iterator const_iterator::operator++(int)
これはオーバーロードされた関数です。
++
の後置演算子it++
は、イテレータを配列の次の項目に進め、それ以前の現在の項目へのイテレータを返します。
QJsonArray::const_iterator &const_iterator::operator+=(qsizetype j)
イテレータをj アイテム分進めます。j が負の場合、イテレータは後退します。
operator-=() およびoperator+()も参照 。
qsizetype const_iterator::operator-(QJsonArray::const_iterator other) const
other が指す項目とこのイテレータが指す項目との間の項目数を返します。
QJsonArray::const_iterator const_iterator::operator-(qsizetype j) const
このイテレータから後方にj の位置にある項目へのイテレータを返します。j が負の場合、イテレータは前方に進む。
operator+() およびoperator-=()も参照 。
QJsonArray::const_iterator &const_iterator::operator--()
--
の前置演算子--it
は、直前の項目を現在の項目にし、新しい現在の項目へのイテレータを返す。
この関数をQJsonArray::begin() で呼び出すと、未定義の結果になります。
operator++()も参照 。
QJsonArray::const_iterator const_iterator::operator--(int)
これはオーバーロードされた関数です。
--
の後置演算子it--
は、直前の項目を現在の項目にし、直前の現在の項目へのイテレータを返します。
QJsonArray::const_iterator &const_iterator::operator-=(qsizetype j)
イテレータをj アイテム分遡らせます。j が負の場合、イテレータは前に進みます。
operator+=() およびoperator-()も参照 。
const QJsonValueConstRef *const_iterator::operator->() const
現在の項目へのポインタを返します。
QJsonValueConstRef const_iterator::operator[](qsizetype j) const
このイテレータが指す項目(位置*this + j
の項目)からオフセットj にある項目を返します。
この関数は、QJsonArray イテレータを C++ ポインタのように動作させるために用意されています。
operator+()も参照してください 。
関連する非メンバ
[noexcept]
bool operator!=(const QJsonArray::const_iterator &lhs, const QJsonArray::const_iterator &rhs)
lhs がrhs イテレータと異なる項目を指している場合はtrue
を返し、そうでない場合はfalse
を返します。
operator==()も参照 。
[noexcept]
bool operator<(const QJsonArray::const_iterator &lhs, const QJsonArray::const_iterator &rhs)
lhs イテレータが指す項目がrhs イテレータが指す項目より小さい場合はtrue
を返す。
[noexcept]
bool operator<=(const QJsonArray::const_iterator &lhs, const QJsonArray::const_iterator &rhs)
lhs イテレータが指す項目がrhs イテレータが指す項目以下である場合、true
を返す。
[noexcept]
bool operator==(const QJsonArray::const_iterator &lhs, const QJsonArray::const_iterator &rhs)
lhs がrhs イテレータと同じ項目を指している場合はtrue
を返し、そうでない場合はfalse
を返す。
operator!=()も参照のこと 。
[noexcept]
bool operator>(const QJsonArray::const_iterator &lhs, const QJsonArray::const_iterator &rhs)
lhs イテレータが指す項目がrhs イテレータが指す項目より大きければtrue
を返す。
[noexcept]
bool operator>=(const QJsonArray::const_iterator &lhs, const QJsonArray::const_iterator &rhs)
lhs イテレータが指す項目がrhs イテレータが指す項目以上である場合、true
を返す。
©2024 The Qt Company Ltd. 本文書に含まれる文書の著作権は、それぞれの所有者に帰属します。 本書で提供されるドキュメントは、Free Software Foundation が発行したGNU Free Documentation License version 1.3に基づいてライセンスされています。 Qtおよびそれぞれのロゴは、フィンランドおよびその他の国におけるThe Qt Company Ltd.の 商標です。その他すべての商標は、それぞれの所有者に帰属します。