📄
字号:
// Test01.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream.h>
#include <string.h>
class CControl
{
public:
void Fun();
static CControl* GetControl();
~CControl();
protected:
private:
static CControl* m_pControl;
};
CControl* CControl::m_pControl = NULL;
CControl::~CControl()
{
m_pControl = NULL;
}
CControl* CControl::GetControl()
{
if (NULL == m_pControl)
{
m_pControl = new CControl();
}
return m_pControl;
}
void CControl::Fun()
{
cout << "only one class " << endl;
}
void main()
{
CControl::GetControl()->Fun();
delete (CControl::GetControl());
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -