摘要:
STL源码阅读(三) (SGI STL v3.3)stl_list.h ()// list结点基类struct _List_node_base { _List_node_base* _M_next; // 指向下一个结点 _List_node_base* _M_prev; //... 阅读全文
摘要:
STL源码阅读(二) (SGI STL v3.3)stl_vector.h ()// vector的内存分配基类template class _Vector_alloc_base {public: typedef _Alloc_traits::allocator_type a... 阅读全文