std::reverse_iterator::operator++,+,+=,--,-,-=
提供: cppreference.com
< cpp | iterator | reverse iterator
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
reference operator++(); |
(1) | |
reference operator--(); |
(2) | |
reference operator++( int ); |
(3) | |
reference operator--( int ); |
(4) | |
reverse_iterator operator+( difference_type n ) const; |
(5) | |
reverse_iterator operator-( difference_type n ) const; |
(6) | |
reverse_iterator& operator+=( difference_type n ) const; |
(7) | |
reverse_iterator& operator-=( difference_type n ) const; |
(8) | |
インクリメントまたはデクリメントイテレータ。 Inverse operations are applied to the underlying operator because of the reverse order.
Original:
Increments or decrements the iterator. Inverse operations are applied to the underlying operator because of the reverse order.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1-2)
それぞれ1でプレインクリメントまたはデクリメントプレ.
Original:
Pre-increments or pre-decrements by one respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
3-4)
それぞれずつポストインクリメントまたはデクリメント後.
Original:
Post-increments or post-decrements by one respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
5-6)
それぞれ
n
または-n
位置によって進められる反復子を返します.Original:
Returns an iterator which is advanced by
n
or -n
positions respectively.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
7-8)
それぞれ
n
または-n
位置によって進歩イテレータ.Original:
Advances the iterator by
n
or -n
positions respectively.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 値を返します
1) *this
2)
変更前に行われた*thisのコピー
Original:
a copy of *this that was made before the change
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
3) reverse_iterator(base()-n) or reverse_iterator(base()+n) respectively.
4) *this
[編集] 例
This section is incomplete Reason: no example |
[編集] も参照してください
イテレータをインクリメントします (関数テンプレート) |