C++ 提高教程 STL-构造函数

Posted 行码阁119

tags:

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

 

# include<iostream>
# include <string>
using namespace std;
//string的构造函数
void test01()
{

}
int main()
{
	string s1 = "abc";//默认构造
	const char* str = "hello world";


	
	string s2(str);

	cout << "s2:"<<s2 << endl;
	string s3(s2);
	cout << "s3:" << s3 << endl;
	string s4(10, 'a');
	cout << "s4:" << s4 << endl;
	system("pause");
	return 0;
}

以上是关于C++ 提高教程 STL-构造函数的主要内容,如果未能解决你的问题,请参考以下文章

C++ 提高教程 STL deque容器-赋值操作

C++ 提高教程 STL初识

C++ 提高教程 STL list容器

C++提高编程STL-deque容器

C++提高编程STL-vector容器

C++提高编程STL-string容器