C++模板
文章平均质量分 86
小大小丑
小丑
展开
-
C++编译期间的虚函数调用机制
C++编译期间的虚函数调用机制转载 2010-11-25 21:11:00 · 1568 阅读 · 0 评论 -
函数模板的定义和使用
函数模板的定义和使用一.场景: 在使用STL时, 经常使用std::vector, std::list 等等, 以std::vector为例1. std::vector, std::vector, 在赋值的时候比较简单(因为C++ 已经实现了int和double的赋值操作符 =)2. std::vector, std::vector, std::vector, 在这种情况下赋值原创 2013-01-03 16:35:50 · 1954 阅读 · 0 评论 -
XML序列化数据对象(三)
XML序列化数据对象(三) --- 实现一. 实现界面1.1 大致界面图11.2 类类型图21.3 变量输入图3二. 使用步骤2.1 添加一些类图42.2 添加一些变量图52.3 可以保存类型和变量为xml文件添加了类型和变量后, 这些数据可以保存为x原创 2013-07-27 10:43:42 · 1614 阅读 · 0 评论 -
std::map的使用
std::map的使用 一. std::map的定义// std::map 的定义templateclass _Ty, // Valueclass _Pr = less, // 比较器class _Alloc = allocator > > // 内存分配器class map: public _Tree > // 父类(红黑树){......}原创 2014-11-25 14:00:54 · 2409 阅读 · 0 评论 -
std::hash_map的使用
std::hash_map的使用(基于VC2010) 一. std::hash_map的定义// std::hash_map的定义template<class _Kty, // Key class _Ty, // Value class _Tr = hash_compare >, // 哈希比较器(里面也调用了普通的比较器) class _Alloc = alloca原创 2014-11-25 17:38:56 · 4769 阅读 · 0 评论