STL
逐影Linux
不成魔自成狂。
展开
-
list类的使用与泛型编程
#include #include #include #include #include #include //使用模板的原因:类型不同,操作相同,就可以封装成模板 //体现泛型编程的动机--通用 template class MyList : public std::list { public: typedef typename std::list::iterator MyIt原创 2013-08-25 22:16:29 · 1419 阅读 · 0 评论 -
标准容器List的使用
#ifndef __STD_LIST_TEST__ #define __STD_LIST_TEST__ #include #include using namespace std; class TestData { public: TestData() { m_Num = 0; } public: int m_Num; }; #endif #inclu原创 2013-12-24 22:39:32 · 756 阅读 · 0 评论 -
标准容器map的使用(创建优先级队列)
#ifndef __STD_LIST_TEST__ #define __STD_LIST_TEST__ #include #include #include class TestData { public: TestData() { m_Num = 0; } public: int m_Num; }; #endif #include "St原创 2013-12-25 01:20:07 · 2000 阅读 · 0 评论