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的析构函数
}
posted @ 2009-07-12 20:27  Keosu  阅读(170)  评论(0编辑  收藏  举报