码迷,mamicode.com
首页 > 其他好文 > 详细

string::crbegin string::crend

时间:2019-12-23 19:19:56      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:第一个   功能   ios   字符   string   rev   const   out   ever   

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

标签:第一个   功能   ios   字符   string   rev   const   out   ever   

原文地址:https://www.cnblogs.com/xpylovely/p/12085233.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!