STL3-MyArray動態數組類模板實現

注意ios 一、右值的拷貝使用數組 二、拷貝構造函數的使用 函數 #include<iostream> using namespace std; template<class T> class MyArray{ public: MyArray(int capacity) { this->mCapacity = capacity; this->mSize = 0; //申請內存
相關文章
相關標籤/搜索