上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 42 下一页

2015年11月23日

C++内存使用机制基本概念详解

摘要: 1.程序使用内存区 一个程序占用的内存区一般分为5种:(1)全局、静态数据区:存储全局变量及静态变量(包括全局静态变量和局部静态变量)(2)常量数据区:存储程序中的常量字符串等。(3)代码区:存储程序的代码。(4)栈:存储自动变量或者局部变量,以及传递的函数参数等。(5)堆:存储动态产生的数据。在处... 阅读全文

posted @ 2015-11-23 11:35 zyz913614263 阅读(207) 评论(0) 推荐(0) 编辑

C++ STL源码剖析

摘要: stl_config.h defalloc.h stl_alloc.h memory.cpp stl_construct.h stl_uninitialized.h stl_iterator.h type_traits.h stl_vector.h stl_pair.h stl_list.h stl... 阅读全文

posted @ 2015-11-23 11:30 zyz913614263 阅读(575) 评论(0) 推荐(0) 编辑

STL stl_config.h

摘要: stl_config.h 1. // Filename: stl_config.h 2. 3. // Comment By: 凝霜 4. // E-mail: mdl2009@vip.qq.com 5. // Blog: http... 阅读全文

posted @ 2015-11-23 11:29 zyz913614263 阅读(1170) 评论(0) 推荐(0) 编辑

C语言运算符优先级 详细列表

摘要: 优先级运算符名称或含义使用形式结合方向说明1[]数组下标数组名[常量表达式]左到右()圆括号(表达式)/函数名(形参表).成员选择(对象)对象.成员名->成员选择(指针)对象指针->成员名2-负号运算符-表达式右到左单目运算符(类型)强制类型转换(数据类型)表达式++自增运算符++变量名/变量名++... 阅读全文

posted @ 2015-11-23 11:29 zyz913614263 阅读(284) 评论(0) 推荐(0) 编辑

STL defalloc.h

摘要: defalloc.h 1. // Filename: defalloc.h 2. 3. // Comment By: 凝霜 4. // E-mail: mdl2009@vip.qq.com 5. // Blog: http://b... 阅读全文

posted @ 2015-11-23 11:28 zyz913614263 阅读(295) 评论(0) 推荐(0) 编辑

STL memory.cpp

摘要: memory.cpp# // Filename: memory # # // Comment By: 凝霜 # // E-mail: mdl2009@vip.qq.com # // Blog: http://blog.csdn.net/mdl13412 #... 阅读全文

posted @ 2015-11-23 11:27 zyz913614263 阅读(243) 评论(0) 推荐(0) 编辑

STL stl_alloc.h

摘要: # // Comment By: 凝霜 # // E-mail: mdl2009@vip.qq.com # // Blog: http://blog.csdn.net/mdl13412 # # // 特别说明: SGI STL的allocator在我的编译环境下不... 阅读全文

posted @ 2015-11-23 11:27 zyz913614263 阅读(543) 评论(2) 推荐(0) 编辑

stl_iterator.h

摘要: stl_iterator.h// Filename: stl_iterator.h// Comment By: 凝霜// E-mail: mdl2009@vip.qq.com// Blog: http://blog.csdn.net/mdl13412/* * * Co... 阅读全文

posted @ 2015-11-23 11:26 zyz913614263 阅读(314) 评论(0) 推荐(0) 编辑

STL stl_uninitialized.h

摘要: stl_uninitialized.h// Filename: stl_uninitialized.h// Comment By: 凝霜// E-mail: mdl2009@vip.qq.com// Blog: http://blog.csdn.net/mdl1341... 阅读全文

posted @ 2015-11-23 11:26 zyz913614263 阅读(205) 评论(0) 推荐(0) 编辑

STL stl_construct.h

摘要: stl_construct.h// Filename: stl_construct.h// Comment By: 凝霜// E-mail: mdl2009@vip.qq.com// Blog: http://blog.csdn.net/mdl13412/* * * ... 阅读全文

posted @ 2015-11-23 11:26 zyz913614263 阅读(303) 评论(0) 推荐(0) 编辑

上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 42 下一页

导航