摘要:
功能描述: 给string字符串进行赋值 赋值函数原型: string& operator=(const char *s); //char*类型字符串 赋值给当前的字符串 string& operator=(const string &s); //把字符串s赋给当前的字符串 string& oper 阅读全文
摘要:
************************************************************************************************ 本质: string是典型的C++风格的字符串,而string本质上是一个类 string 和 char 阅读全文
摘要:
学习目标: 容器嵌套容器,我们将所有的数据进行遍历输出 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 using namespace std; 5 6 //vector容器嵌套容器 7 void test_01(voi 阅读全文
摘要:
学习目标: vector存放自定义数据类型,并打印输出 解引用: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 using namespace std; 5 6 //vector存放自定义数据类型 7 class Pe 阅读全文