摘要: # include <iostream>using namespace std;template <typename T, int SIZE>class array{ T data_[SIZE];public: array(){}; array (const array& other); const array& operator = (const array& other); T& operator[](int i) {return data_[i];} const T& get_elem (int i) const {retu 阅读全文
posted @ 2012-02-29 11:34 Ranger98 阅读(130) 评论(0) 推荐(0)