免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1820 | 回复: 4
打印 上一主题 下一主题

[C++] stl list resize 是怎么用的? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-07-22 14:20 |只看该作者 |倒序浏览
为什么我一用这个东西就崩溃了

       list<NETCORE_THREADWORK> stl_ThreadWork;
        stl_ThreadWork.resize(100);

论坛徽章:
4
水瓶座
日期:2013-09-06 12:27:30摩羯座
日期:2013-09-28 14:07:46处女座
日期:2013-10-24 14:25:01酉鸡
日期:2014-04-07 11:54:15
2 [报告]
发表于 2013-07-22 14:42 |只看该作者
  1. Resizes the container so that it contains n elements.

  2. If n is smaller than the current container size, the content is reduced to its first n elements, removing those beyond (and destroying them).

  3. If n is greater than the current container size, the content is expanded by inserting at the end as many elements as needed to reach a size of n. If val is specified, the new elements are initialized as copies of val, otherwise, they are value-initialized.

  4. Notice that this function changes the actual content of the container by inserting or erasing elements from it.
复制代码

论坛徽章:
4
水瓶座
日期:2013-09-06 12:27:30摩羯座
日期:2013-09-28 14:07:46处女座
日期:2013-10-24 14:25:01酉鸡
日期:2014-04-07 11:54:15
3 [报告]
发表于 2013-07-22 14:42 |只看该作者
看看构造函数 与 析构函数实现有没有什么问题。

论坛徽章:
0
4 [报告]
发表于 2013-07-22 15:00 |只看该作者
        list<NETCORE_THREADWORK> stl_ThreadWork;
        stl_ThreadWork.resize(100);
        stl_MapWork.insert(make_pair(pSt_hThreadPool->hThread,stl_ThreadWork));

我在构造他的时候指定的内存大小

然后在另外一个地方访问他就挂了

论坛徽章:
0
5 [报告]
发表于 2013-07-22 16:46 |只看该作者
当你调用resize(100)的时候,
list会为分配100个NETCORE_THREADWORK空间,并且第一个调用NETCORE_THREADWORK(),其余99个调用NETCORE_THREADWORK(const NETCORE_THREADWORK &)并且参数是第一个分配的内容。
如果你没有重写NETCORE_THREADWORK(const NETCORE_THREADWORK &),那么这个默认函数会是一个浅copy
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP