string::crbegin string::crend
Posted xpylovely
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string::crbegin string::crend相关的知识,希望对你有一定的参考价值。
const_reverse_iterator crbegin() const noexcept;
功能:crbegin是最后一个字符,crend第一个字符的前一个。迭代器向左移动是“+”,向右移动是“-”
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s1("hello");
string::const_reverse_iterator it = s1.crbegin();
cout << *it << endl;//o
it = s1.crend() - 1;//h
cout << *it << endl;
return 0;
}
以上是关于string::crbegin string::crend的主要内容,如果未能解决你的问题,请参考以下文章
“字符串”类型的参数不可分配给“$string”类型的参数 | `$string.$string` | `$string.$number`'
Activity 类型的方法 managedQuery(Uri, String[], String, String[], String) 已弃用