摘要: 转载http://blog.csdn.net/thefutureisour/article/details/7751846容器适配器容器适配器其实就是一个接口转换装置,使得我们能用特定的方法去操作一些我们本来无法操作的东西。举一个例子,比如你的一个设备支持串口线,而你的电脑支持的是USB接口,这时候... 阅读全文
posted @ 2015-06-06 11:07 codeplayplus 阅读(633) 评论(0) 推荐(0) 编辑
摘要: 参见http://www.cplusplus.com/reference/deque/deque/deque是双向开口的连续性存储空间。虽说是连续性存储空间,但这种连续性只是表面上的,实际上它的内存是动态分配的,它在堆上分配了一块一块的动态储存区,每一块动态存储区本身是连续的,deque自身的机制把... 阅读全文
posted @ 2015-06-04 21:42 codeplayplus 阅读(256) 评论(0) 推荐(0) 编辑
摘要: template > class list;ListLists are sequence containers that allow constant time insert and erase operations anywhere within the sequence, and iterat... 阅读全文
posted @ 2015-06-03 18:05 codeplayplus 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 参见http://www.cplusplus.com/reference/set/multiset/template , // multiset::key_compare/value_compare class Alloc = allocator > // multiset::allocator_t... 阅读全文
posted @ 2015-06-02 10:39 codeplayplus 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 参见http://www.cplusplus.com/reference/map/multimap/多重映射multimap和map映射很相似,但是multimap允许重复的关键字,这使得multimap在某些情况下会更有用,比如说在电话簿中同一个人可以有多个电话号码multimap中并没有像map... 阅读全文
posted @ 2015-06-01 20:11 codeplayplus 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 参见http://www.cplusplus.com/reference/set/set/ /*template , // set::key_compare/value_compare class Alloc = allocator // set::allocator_type > class set; Se... 阅读全文
posted @ 2015-05-31 19:29 codeplayplus 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 参见C++ Reference:http://www.cplusplus.com/reference/vector/vector/?kw=vector typedef basic_string string; String classStrings are objects that represent sequences of characters.[string类对象就是字符串序列]The ... 阅读全文
posted @ 2015-05-26 21:55 codeplayplus 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 参考:http://www.jb51.net/article/53760.htm 通常来说,在C++中,命名空间(namespace)的目的是为了防止名字冲突。每个命名空间是一个作用域,在所有命名空间之外,还存在一个全局命名空间(global namespace),全局命名空间以隐式的方式声明,它并... 阅读全文
posted @ 2015-05-18 17:09 codeplayplus 阅读(631) 评论(0) 推荐(0) 编辑
摘要: 十分感谢六仙庵对于Windows Live Writer的教程,方便了编辑与发布,教程地址如下:http://www.cnblogs.com/liuxianan/archive/2013/04/13/3018732.html其中的代码高亮工具下载地址如下:http://files.cnblogs.c... 阅读全文
posted @ 2015-05-18 15:16 codeplayplus 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 容器是包含其他对象的对象,标准C++库中提供了一系列的容器,这些容器可以分为两种类型,顺序容器和关联容器。顺序容器可提供对自身元素的顺序访问或者随机访问,标准C++库提供了3种顺序容器,即vector、list、deque;关联容器则是用关键字对关键元素进行访问,标准C++库提供了4种关联容器,即... 阅读全文
posted @ 2015-05-17 20:12 codeplayplus 阅读(285) 评论(0) 推荐(0) 编辑