basic_string::const_reverse_iterator
A type that provides a random-access iterator that can read any const element in the string.
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
설명
A type const_reverse_iterator cannot modify the value of a character and is used to iterate through a string in reverse.
예제
See the example for rbegin for an example of how to declare and use const_reverse_iterator.
요구 사항
헤더: <string>
네임스페이스: std