用c++模版实现的stack类

时间:2023-01-11 13:50:18
【文件属性】:

文件名称:用c++模版实现的stack类

文件大小:1KB

文件格式:ZIP

更新时间:2023-01-11 13:50:18

C++ 模版

用c++模版实现的stack类,供初学者学习。 template class Stack { public: Stack(); ~Stack(); void push(T t); T pop(); bool isEmpty(); private: T *m_pT; const int m_maxSize; int m_size; };


【文件预览】:
stack
----test.cpp(1KB)
----stack.h(793B)

网友评论