C++模板类的用法
更新时间:2014年10月21日 10:21:20 投稿:shichen2014
这篇文章主要介绍了C++模板类的用法,实例讲述了模板类的概念及相关用法,需要的朋友可以参考下
本文实例讲述了C++模板类的用法,分享给大家供大家参考。具体实现方法如下:
main.h头文件如下:
复制代码 代码如下:
template <class T>
class actioncontainer
{
public:
//构造函数
actioncontainer()
{
m_nRedoPos = 0;
m_nUndoPos = 0;
}
//容器的接口函数
void add(T value);
T redo();
T undo();
//容器的属性
private:
int m_nRedoPos;
int m_nUndoPos;
const static int ACTION_SIZE=5;
T m_RedoAction[ACTION_SIZE];
T m_UndoAction[ACTION_SIZE];
};
template<class T>
void actioncontainer<T>::add(T value)
{
if (m_nUndoPos >= ACTION_SIZE)
{
//如果容器已潢,刚调整添加位置
m_nUndoPos = ACTION_SIZE - 1;
for(int i = 0; i < ACTION_SIZE; i++)
{
m_UndoAction[i] = m_UndoAction[i+1];
}
}
m_UndoAction[m_nUndoPos++] = value;
}
template<class T>
T actioncontainer<T>::redo()
{
//将恢复动作复制到撤销数组中
m_UndoAction[m_nUndoPos++] = m_RedoAction[--m_nRedoPos];
//返回恢复的动作
return m_RedoAction[m_nRedoPos];
}
template<class T>
T actioncontainer<T>::undo()
{
m_RedoAction[m_nRedoPos++] = m_UndoAction[--m_nUndoPos];
return m_UndoAction[m_nUndoPos];
}
class actioncontainer
{
public:
//构造函数
actioncontainer()
{
m_nRedoPos = 0;
m_nUndoPos = 0;
}
//容器的接口函数
void add(T value);
T redo();
T undo();
//容器的属性
private:
int m_nRedoPos;
int m_nUndoPos;
const static int ACTION_SIZE=5;
T m_RedoAction[ACTION_SIZE];
T m_UndoAction[ACTION_SIZE];
};
template<class T>
void actioncontainer<T>::add(T value)
{
if (m_nUndoPos >= ACTION_SIZE)
{
//如果容器已潢,刚调整添加位置
m_nUndoPos = ACTION_SIZE - 1;
for(int i = 0; i < ACTION_SIZE; i++)
{
m_UndoAction[i] = m_UndoAction[i+1];
}
}
m_UndoAction[m_nUndoPos++] = value;
}
template<class T>
T actioncontainer<T>::redo()
{
//将恢复动作复制到撤销数组中
m_UndoAction[m_nUndoPos++] = m_RedoAction[--m_nRedoPos];
//返回恢复的动作
return m_RedoAction[m_nRedoPos];
}
template<class T>
T actioncontainer<T>::undo()
{
m_RedoAction[m_nRedoPos++] = m_UndoAction[--m_nUndoPos];
return m_UndoAction[m_nUndoPos];
}
main.cpp源文件如下:
复制代码 代码如下:
// test_iostream.cpp : 定义控制台应用程序的入口点。
//
#include "StdAfx.h"
#include "main.h"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
actioncontainer<int> intaction;
//向容器中加动作
intaction.add(1);
intaction.add(2);
intaction.add(3);
intaction.add(4);
//撤销上一步动作
int nUndo = intaction.undo();
nUndo = intaction.undo();
//恢复
int nRedo = intaction.redo();
return 0;
}
//
#include "StdAfx.h"
#include "main.h"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
actioncontainer<int> intaction;
//向容器中加动作
intaction.add(1);
intaction.add(2);
intaction.add(3);
intaction.add(4);
//撤销上一步动作
int nUndo = intaction.undo();
nUndo = intaction.undo();
//恢复
int nRedo = intaction.redo();
return 0;
}
希望本文所述对大家的C++程序设计有所帮助。
相关文章
C++中int main(int argc, char** argv)的参数使用
int main(int argc, char** argv) 是C和C++程序的入口点,其中argc和argv是用来接收从命令行传递给程序的参数的,本文就来介绍一下这两个参数的含义,感兴趣的可以了解一下的相关资料2024-01-01基于C++ cin、cin.get()、cin.getline()、getline()、gets()函数的使用详解
学C++的时候,这几个输入函数弄的有点迷糊;这里做个小结2013-05-05
最新评论