Windows编程 - 构造,析构
#include "stdafx.h"
#include <stdlib.h>
#include <windows.h>
class CMyClass
{
public:
CMyClass() { printf(" Constructor\n"); }
~CMyClass() { printf(" Destructor\n"); }
};
void main()
{
//system("pause");
CMyClass theObject;
::ExitThread(0);
printf("AAAAAA");
CMyClass theObjecdt;
// 在这个函数的结尾,编译器会自动添加一些必要的代码,
// 来调用theObject的析构函数
}
#include <stdlib.h>
#include <windows.h>
class CMyClass
{
public:
CMyClass() { printf(" Constructor\n"); }
~CMyClass() { printf(" Destructor\n"); }
};
void main()
{
//system("pause");
CMyClass theObject;
::ExitThread(0);
printf("AAAAAA");
CMyClass theObjecdt;
// 在这个函数的结尾,编译器会自动添加一些必要的代码,
// 来调用theObject的析构函数
}