📄 caculate.h
字号:
#ifndef _CACULATE_H_
#define _CACULATE_H_
#include <iostream>
#include <string>
#include <vector>
using namespace std;
class CCaculate
{
public:
CCaculate();
CCaculate(const CCaculate& oOther);
virtual ~CCaculate();
public:
int LuckClick(CString& strLuck); // 幸运一点
int AddName(CString strName); // 添加名字,返回1代表成功,0代表失败
int GetListSize(); // 获取当前容器的大小
void GetNameList(vector<CString>& vNameList) const; // 拷贝出容器中的所有名字
public:
int m_nListSize;
vector<CString> m_vNameList;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -