1 Star 1 Fork 0

AlbertDarren / STL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
stringConstructors.cpp 706 Bytes
一键复制 编辑 原始数据 按行查看 历史
AlbertDarren 提交于 2022-04-03 00:55 . first commit
/**
* @author AlbertDarren
* @contact 2563491540@qq.com
*/
#include <iostream>
#include <string>
#include <cstring>
using namespace std;
int main_20()
{
string str1,str2(5,'a');
string str3(str2);
string str4(str3.begin(),str3.begin()+str3.size()/2);
cout << str1 << endl;
cout << str2 << endl;
cout << str3 << endl;
cout << str4 << endl;
char str5[]="apple";
char *str6="pear";
string str7(str5+1,3);
string str8(str5,2,2);
string str9(str5,2,8);
cout << str7 << endl;
cout << str8 << endl;
cout << str9 << endl;
cout << sizeof(str5)/sizeof(str5[0]) << endl;
cout << strlen(str5) << endl;
cout << strlen(str6) << endl;
return 0;
}
C++
1
https://gitee.com/AlbertDarren_admin/stl.git
git@gitee.com:AlbertDarren_admin/stl.git
AlbertDarren_admin
stl
STL
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891