首页 > 代码库 > string 学习
string 学习
#include <string>
1.取当中某个字符
与传统一样 c[11]="0123456789"; c[1]=1; ps:好慢 。。 会不会GG。。。
1 #include <iostream> 2 #include <string> 3 using namespace std; 4 int main() 5 { 6 string s("0123456789"); 7 cout<<s<<endl; 8 cout<<s[1]<<endl;//也是从0位开始 9 return 0; 10 }
2.一些比较函数
① 重载运算符 <,>,<=,>=,==
1 #include <iostream> 2 #include <string> 3 using namespace std; 4 int main() 5 {//得出 重载符 比较的是字典序 不是长度 6 string ss[2]; 7 while(cin>>ss[0]>>ss[1]) 8 { 9 cout<<ss[0]<<" "<<ss[1]<<endl; 10 cout<<" < : "<<(ss[0]<ss[1])<<endl; 11 cout<<" > : "<<(ss[0]>ss[1])<<endl; 12 cout<<" <= : "<<(ss[0]<=ss[1])<<endl; 13 cout<<" >= : "<<(ss[0]>=ss[1])<<endl; 14 cout<<" == : "<<(ss[0]==ss[1])<<endl; 15 } 16 return 0; 17 }
待续:2017-03-05 23:43:40
string 学习
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。