C++中范围for语句
如果想对string对象中的每个字符做点什么操作,目前最好的办法是使用C++11新标准提供的一种语句:范围for(range for)语句。
示例代码:
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str("some string");
//每行输出str中的一个字符。
for (auto c : str)
cout << c << endl;
return 0;
}
如果想要改变string对象中字符的值,必须把循环变量定义成引用类型。
示例代码:
#include<iostream>
#include<string>
#include<cctype>
using namespace std;
int main()
{
string str("some string");
//转换成大写形式
for (auto &c : str)
c = toupper(c);
cout << str << endl;
return 0;
}
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步