摘要: #include "stdio.h"template <typename T, int SIZE>class array{ T data_[SIZE]; array (const array& other); const array& operator = (const array& other);public: array(){}; T& operator[](int i) {return data_[i];} const T& get_elem (int i) const {return data_[i];} void 阅读全文
posted @ 2013-04-15 14:41 Roarsun 阅读(182) 评论(0) 推荐(0) 编辑