码迷,mamicode.com
首页 > 其他好文 > 详细

STL 源码解析

时间:2014-09-21 00:50:19      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:sp   on   c   amp   line   new   r   bs   as   

一开始一直无法理解STL中的内存分析,一天很困,翻开了侯捷的STL源码解析,阅读一二,这是一针见血,字字珠玑,解开了一个又一个迷惑~

简单记录,和大家分享一下

1) 空间适配器

template <class T1,class T2>

inline void _construct(T1 *p,const T2 &value) {

  new (p) T1(value);  // placement new, and allocate object on the requested memory 

}

 

STL 源码解析

标签:sp   on   c   amp   line   new   r   bs   as   

原文地址:http://www.cnblogs.com/purejade/p/3983921.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!