C++提高教程 STL-string字符存取

Posted 行码阁119

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++提高教程 STL-string字符存取相关的知识,希望对你有一定的参考价值。

 

# include<iostream>
# include<string>
using namespace std;

void test01()
{
	string str1 = "Hello";
	cout << "str1:" << str1 << endl;

	for (int i = 0; i < str1.size();i++)
	{
		cout << str1[i] << endl;
	}
	cout << endl;
	for (int i = 0; i < str1.size(); i++)
	{
		cout << str1.at(i) << endl;
	}
}
int main()
{
	test01();
	system("pause");
	return 0;
}

以上是关于C++提高教程 STL-string字符存取的主要内容,如果未能解决你的问题,请参考以下文章

C++ 提高教程 STL-string字串

C++ 提高教程 STL -String 字符串删除和存取

C++ 提高教程 STL vector容器-数据存取

C++ 提高教程 STL-字符串对比

C++ 提高教程 STL -string字符串拼接

C++视频教程201802C语言提高全72讲 视频教程+源代码