hi:
i overload the operator new, codes shown as below:

void * __cdecl operator new(unsigned int size, const char *file, int line)
{
void *ptr = (void *)malloc(size);

return ptr;
}

and when i want to create a class object

CTest::CTest()
{
int a = 0;
}
CTest::~CTest()
{
int b = 0;
}

int main()...