摘要: template class Vector { public: /** *默认构造函数 */ Vector(){} /** *拷贝控制 */ Vector(const Vector &s) { auto newdata = alloc_n_copy(s.begin(), s.end()); ... 阅读全文
posted @ 2016-09-18 10:48 wangyanphp 阅读(229) 评论(0) 推荐(0) 编辑