华师一附中OI组
标题:
字符串类型
[打印本页]
作者:
diggersun
时间:
2017-10-18 15:47
标题:
字符串类型
一楼不给看
作者:
diggersun
时间:
2017-10-18 15:47
#include<iostream>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
string s;///默认初始化,一个空字符串
string s1("ssss");///s1是字面值“ssss”的副本
string s2(s1);///s2是s1的副本
string s3=s2;///s3是s2的副本
string s4(10,'c');///把s4初始化
string s5="hiya";///拷贝初始化
string s6=string(10,'c');///拷贝初始化,生成一个初始化好的对象,拷贝给s6
///string s(cp,n)
char cs[]="12345";
string s7(cs,3);//复制字符串cs的前3个字符到s当中
///string s(s2,pos2)
string s8="asac";
string s9(s8,2);///从s2的第二个字符开始拷贝,不能超过s2的size
///string s(s2,pos2,len2)
string s10="qweqweqweq";
string s11(s10,3,4);//s4是s3从下标3开始4个字符的拷贝,超过s3.size出现未定义
cout<<s1<<endl;
cout<<s2<<endl;
cout<<s3<<endl;
cout<<s4<<endl;
cout<<s5<<endl;
cout<<s6<<endl;
cout<<s7<<endl;
cout<<s8<<endl;
cout<<s9<<endl;
cout<<s10<<endl;
cout<<s11<<endl;
return 0;
}
复制代码
作者:
diggersun
时间:
2017-10-18 15:50
http://blog.csdn.net/tengfei461807914/article/details/52203202
作者:
universehyf
时间:
2018-6-30 11:24
请问ios::sync_with_stdio(false);是什么意思
作者:
admin
时间:
2018-6-30 21:03
universehyf 发表于 2018-6-30 11:24
请问ios::sync_with_stdio(false);是什么意思
关掉读入同步功能,据说可以加快读入的速度,不过肯定还是比不上scanf和快读
作者:
universehyf
时间:
2018-7-3 18:40
请问find函数怎么用啊?
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2