摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; /* 3.1.6 string字符串比较 字符串比较是按字符的ASCII码进行对比 = 返回 0 > 返回 1 < 返回 -1 int compar 阅读全文
posted @ 2021-04-22 22:06 yub4by 阅读(166) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; /* 3.1.5 string查找和替换 int find(const string& str, int pos = 0) const; //查找s 阅读全文
posted @ 2021-04-22 22:06 yub4by 阅读(80) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; /* 3.1.4 string字符串拼接 string& operator+=(const char* str); //重载+=操作符 string 阅读全文
posted @ 2021-04-22 22:05 yub4by 阅读(132) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; /* 3.1.3 string赋值操作 string& operator=(const char* s); //char*类型字符串 赋值给当前的字 阅读全文
posted @ 2021-04-22 22:04 yub4by 阅读(179) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; /* 3.1 string容器 3.1.1 string基本概念 string和char * 区别: char * 是一个指针 string是c++ 阅读全文
posted @ 2021-04-22 22:02 yub4by 阅读(132) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; #include <vector> #include <algorithm> /* 2.5.3 vector容器嵌套容器 */ void test1 阅读全文
posted @ 2021-04-22 20:47 yub4by 阅读(133) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; #include<vector> #include<algorithm> /* 2.5.2 vector容器存放自定义数据类型 */ class P 阅读全文
posted @ 2021-04-22 20:45 yub4by 阅读(157) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; #include<vector> #include<algorithm> /* 2.5.1 vector放置内置数据类型 容器: vector 算法 阅读全文
posted @ 2021-04-22 20:44 yub4by 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-22 19:44 yub4by 阅读(40) 评论(0) 推荐(0) 编辑