博客
关于我
阿里钉钉面试题
阅读量:408 次
发布时间:2019-03-06

本文共 897 字,大约阅读时间需要 2 分钟。

定义一个类对list进行封装,使得可以用下标对list进行操作:  1 #include 
2 #include
3 #include
4 #include
5 6 using namespace std; 7 8 class Test 9 {10 public:11 Test();12 //~Test();13 Test(list
strList);14 string &operator[](int n); //一般这里需要有&的,可以防止对象返回时去调用构造函数(因为return值,会有一个把值拷贝下来的过程)15 16 public:17 list
m_strList;18 };19 20 21 Test::Test(list
strList)22 {23 m_strList = strList;24 }25 26 //Test::~Test() //当定义析构函数,而没有实现时会报错.27 //{28 //29 //}30 31 string& Test::operator[](int n)32 {33 list
::iterator i = m_strList.begin();34 vector
::iterator> vecStrIter;35 for (; i != m_strList.end(); i++)36 {37 vecStrIter.push_back(i);38 }39 return *(vecStrIter[n]);40 }41 42 43 int main()44 {45 string str[4] = {"a", "li", "ba", "ba!"};46 list
strList(str, str+4);47 Test test(strList);48 cout << test[1] << endl;49 return 0;50 }

 

转载地址:http://fbbkz.baihongyu.com/

你可能感兴趣的文章
Mysql在离线安装时启动失败:mysql服务无法启动,服务没有报告任何错误
查看>>
Mysql在离线安装时提示:error: Found option without preceding group in config file
查看>>
MySQL基于SSL的主从复制
查看>>
Mysql基本操作
查看>>
mysql基本操作
查看>>
mysql基本知识点梳理和查询优化
查看>>
mysql基础
查看>>
Mysql基础 —— 数据基础操作
查看>>
mysql基础---mysql查询机制
查看>>
MySQL基础5
查看>>
MySQL基础day07_mysql集群实例-MySQL 5.6
查看>>
Mysql基础命令 —— 数据库、数据表操作
查看>>
Mysql基础命令 —— 系统操作命令
查看>>
MySQL基础学习总结
查看>>
mysql基础教程三 —常见函数
查看>>
mysql基础教程二
查看>>
mysql基础教程四 --连接查询
查看>>
MySQL基础知识:创建MySQL数据库和表
查看>>
MySQL基础系列—SQL分类之一
查看>>
MySQL处理千万级数据分页查询的优化方案
查看>>