std::basic_string::rend, std::basic_string::crend
提供: cppreference.com
< cpp | string | basic string
![]() | このページは、Google 翻訳を使って英語版から機械翻訳されました。 翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
iterator rend(); | ||
const_iterator rend()const; | ||
const_iterator crend()const; | (C++11およびそれ以降) | |
逆に、文字列の最後の文字の次の文字に逆反復子を返します。それは、非反転文字列の最初の文字の直前の文字に対応しています。この文字は、それを未定義の動作結果にアクセスしようとすると、プレースホルダとして機能します.
Original:
Returns a reverse iterator to the character following the last character of the reversed string. It corresponds to the character preceding the first character of the non-reversed string. This character acts as a placeholder, attempting to access it results in undefined behavior.
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.
目次 |
[編集]パラメータ
(なし)
[編集]値を返します
最後の文字の次の文字へのイテレータを逆にしてください
Original:
reverse iterator to the character following the last character
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.
[編集]複雑性
定数
[編集]参照
(C++11) | 逆から見て先頭を指す逆イテレータを返します (パブリックメンバ関数) |