摘要: STL源码阅读(三) (SGI STL v3.3)stl_list.h ()// list结点基类struct _List_node_base { _List_node_base* _M_next; // 指向下一个结点 _List_node_base* _M_prev; //... 阅读全文
posted @ 2016-08-01 20:27 corfox 阅读(207) 评论(0) 推荐(0) 编辑
摘要: STL源码阅读(二) (SGI STL v3.3)stl_vector.h ()// vector的内存分配基类template class _Vector_alloc_base {public: typedef _Alloc_traits::allocator_type a... 阅读全文
posted @ 2016-08-01 11:01 corfox 阅读(148) 评论(0) 推荐(0) 编辑