MemoryManage.h
#include
#include
#include
#include"TypeTraits.hpp"
#include
using namespace std;
struct BlockInfo
{
	void *_ptr;
	string _file;
	int _line;
	BlockInfo(void*  ptr=0,char* file="",int line=0)//
		:_ptr(ptr)
		,_file(file)
		,_line(line)
	{}
};
list BlockLists;
void *Alloc(size_t size,char* file,int line)
{
	void* ptr=malloc(size);
	if(ptr)
	{
		BlockInfo info(ptr,file,line);
		BlockLists.push_back(info);
	}
	return ptr;
}
void Dealloc(void* ptr)
{
	free(ptr);
	list::iterator it=BlockLists.begin();
	while(it!=BlockLists.end())
	{
		if(it->_ptr==ptr)
		{
			BlockLists.erase(it);
			return;
		}
		++it;
	}
	assert(false);
}
void Print()
{
	cout<<"内存泄露的内存块"<::iterator it=BlockLists.begin();
	while(it!=BlockLists.end())
	{
		printf("ptr:%p file:%s line:%d\n",it->_ptr,it->_file,it->_line);
		++it;
	}
}
template
T* _NEW(size_t size,char* file,int line)
{
	//T* ptr=(T*)Alloc(size,file,line);
	void* ptr=(void*)Alloc(size,file,line);
	if(TypeTraits::IsPODType().Get())
		return ptr;
	else
		return new(ptr) T;		
};
template
T* _DELETE(T *ptr)
{
	if(!TypeTraits::IsPODType().Get())
		ptr->~T();
	Dealloc(ptr);
};
template
T* _NEW_ARRAY(size_t size,int num,const char* file,int line)
{
	void *ptr=Alloc(size,file,line);
	*((int*)ptr)=num;
	ptr=(void*)((int)ptr+4);
	T*cur=(T*)ptr;
	if(!TypeTraits::IsPODType()Get())
	{
		for(int i=0;i
T _DELETE_ARRAY(void* ptr)
{
	int num=*((int*)ptr-1);
	T* cur=(T*)ptr;
	if(!TypeTraits::IsPODType().Get())
	{
		for(int i=0;i~T();
			++cur;
		}
	}
	Dealloc((void*)((int)ptr-4));
};
#define NEW(type)\
	_NEW(sizeof(type),__FILE__,__LINE__)
#define DELETE(type,ptr)\
	_DELETE(ptr)
#define NEW_ARRAY(type,num)\
	_NEW_ARRAY(sizeof(type)*num+4,__FILE__,__LINE__)
#define DELETE_ARRAY(type,ptr)\
	_DALETE_ARRAY(ptr);
MemoryManage.cpp
#include"MemoryManage.h"
#include
using namespace std;
void Test1()
{
	int* p1 = (int*)Alloc(sizeof(int)*10, __FILE__, __LINE__);
	int* p2 = (int*)Alloc(sizeof(int)*10, __FILE__, __LINE__);
	int* p3 = (int*)Alloc(sizeof(int)*10, __FILE__, __LINE__);
	int* p4 = (int*)Alloc(sizeof(int)*10, __FILE__, __LINE__);
	//Dealloc(p1);
	Dealloc(p2);
	Dealloc(p3);
	//Dealloc(p4);
	Print();
}
int main()
{
	Test1();
	system("pause");
	return 0;
}
TypeTraits.hpp
#include 
using namespace std;
struct __TrueType
{
     bool Get ()
    {
         return true ;
    }
};
struct __FalseType
{
     bool Get ()
    {
         return false ;
    }
};
template 
struct TypeTraits
{
   typedef __FalseType   __IsPODType;
};
template <>
struct TypeTraits< bool>
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< char>
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< unsigned char >
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< short>
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< unsigned short >
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< int>
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< unsigned int >
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< long>
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< unsigned long >
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< long long >
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< unsigned long long>
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< float>
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< double>
{
   typedef __TrueType     __IsPODType;
};
template <>
struct TypeTraits< long double >
{
   typedef __TrueType     __IsPODType;
};
template 
struct TypeTraits< _Tp*>
{
   typedef __TrueType     __IsPODType;
};
//
// 使用参数推到的萃取处理
//
template 
void Copy (const T* src , T* dst, size_t size, __FalseType )
{
     cout<<"__FalseType:" <
void Copy (const T* src , T* dst, size_t size, __TrueType )
{
     cout<<"__TrueType:" <
void Copy (const T* src , T* dst, size_t size)
{
     cout<<"__TrueType:" <:: __IsPODType().Get ())
    {
         memcpy(dst , src, size*sizeof (T));
    }
     else
    {
         for (size_t i = 0; i < size ; ++i)
        {
             dst[i ] = src[ i];
        }
    }
}