2012年(158)
分类: C/C++
2012-11-14 17:11:22
网友评论2012-11-14 17:43:41
田庆飞
在类中动态创建和删除内嵌类对象 为什么不改变类的大小 (内嵌类没有虚函数)
#include "stdafx.h"
#include <windows.h>
class COne
{
public:
int count;
class CTest
{
public:
char chArray[1000000];
};
CTest* CreateTest()
{
CTest* pTest= new CTest;
printf("Create new Test object!\n");
printf("and ths size of this is %d\n",sizeof(this));
return pTest