摘要:
模板template.cpp 1 #include <stdio.h> 2 template<class T> 3 class MyArray 4 { 5 private: 6 int m_nTotalSize; 7 int m_nValidSize; 8 T * m_pData; 9 public:10 MyArray(int nSize = 3)11 {12 m_pData = new T[nSize];13 m_nTotalSize = nSize;14 m_nValidSize = 0;15 ... 阅读全文
该文被密码保护。 阅读全文