Bound1 [ C++ ] 배열 클래스의 템플릿화 #ifndef __ARRAY_TEMPLATE_H_ #define __ARRAY_TEMPLATE_H_ #include #include using namespace std; template class Bound_Chk_Array { private: T * arr; int len; Bound_Chk_Array(const Bound_Chk_Array& arr) { } Bound_Chk_Array& operator=(const Bound_Chk_Array& arr) { } public: Bound_Chk_Array(int _len); T& operator[] (int idx); T operator[] (int idx) const; int GetArrLen() const; ~Bound_Chk_Array(); }; .. 2019. 11. 30. 이전 1 다음