上篇文章介紹了模版函數(shù),本篇文章介紹下模版類。
C++類模版為生成通用的類聲明提供了一種更好的方法。模版提供參數(shù)化類型,即能通過類型名作為參數(shù)傳遞給接收方來簡歷類或函數(shù),例如將類型名int傳遞給Queue模版,可以讓那個模版構(gòu)造一個對int進行排隊的Queue類。
1.定義類模版
#ifndef STACKTP_H_#define STACKTP_H_template <typename T>class Stack {public: Stack(); bool IsEmpty(); bool IsFull(); bool Push(const T& item); bool Pop(T& item);private: enum{MAX = 10}; T Items[MAX]; int m_iTop; };#endif
網(wǎng)友評論