摘要:
学习目标: 容器嵌套容器,我们将所有的数据进行遍历输出 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 阅读全文