摘要: #include <iostream>#include <vector>#include <string>#include "base/tools.hpp"using namespace std;class Test{ public: int id; string name; public: Test(int _id,string _name) { id = _id; name = _name; }};int get(int key,vector<Test>::iterator begin_it,vector... 阅读全文
posted @ 2012-05-23 17:34 轻典 阅读(4346) 评论(0) 推荐(0) 编辑