crbegin() 函数代表 'reverse beginning'。此函数引用字符串的最后一个字符。
用法
考虑一个字符串 str。语法是:
str.crbegin();
参数
该函数不包含任何参数。
返回值
此函数返回指向字符串最后一个字符的常量迭代器。
例子1
我们来看 crbegin() 函数的简单例子:
#include<iostream>
using namespace std;
int main()
{
string str =?Lotus Flower?;
for(auto i=str.crbegin();i!=str.end();i++)
{
cout<<*I;
}
return 0;
}
输出:
rewolF sutoL
此示例显示如何使用 crbegin() 函数反转字符串。
例子2
#include<iostream>
using namespace std;
int main()
{
list<int> li(1,2,3,4,5);
for(auto i =li.crbegin();i!=end();i++)
{
cout<<*i;
}
return 0;
}
输出:
54321
此示例显示如何使用 crbegin() 函数获取反向列表。
相关用法
- C++ String crend()用法及代码示例
- C++ String compare()用法及代码示例
- C++ String clear()用法及代码示例
- C++ String cend()用法及代码示例
- C++ String c_str()用法及代码示例
- C++ String cbegin()用法及代码示例
- C++ String copy()用法及代码示例
- C++ String capacity()用法及代码示例
- C++ String swap()用法及代码示例
- C++ String back()用法及代码示例
- C++ String append()用法及代码示例
- C++ String Assign()用法及代码示例
- C++ String begin()用法及代码示例
- C++ String size()用法及代码示例
- C++ String resize()用法及代码示例
- C++ String Find()用法及代码示例
- C++ String empty()用法及代码示例
- C++ String replace()用法及代码示例
- C++ String at()用法及代码示例
- C++ String insert()用法及代码示例
注:本文由纯净天空筛选整理自 C++ String crbegin()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。