摘要:
STL中的set容器的一点总结 感谢文章的作者。文章转自:http://www.cnblogs.com/BeyondAnyTime/archive/2012/08/13/2636375.html 1.关于set C++ STL 之所以得到广泛的赞誉,也被很多人使用,不只是提供了像vector, st 阅读全文
posted @ 2017-02-22 23:57
sky20080101
阅读(94)
评论(0)
推荐(0)
摘要:
#include #include #include using namespace std; class Student { public: Student(int age,string name) { m_age=age; m_name=name; } Student(const Student &stu) { ... 阅读全文
posted @ 2017-02-22 23:37
sky20080101
阅读(114)
评论(0)
推荐(0)