Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

[Lovely]boy^ ^/Temp

From ZeroWiki
#include <iostream>
using namespace std;

template <typename T>
inline void SAFE_DELETE(T*& arg)
{
	if(arg)
	{
		delete arg;
		arg = NULL;
	}
}

int main()
{
	int* i = new int(5);

	SAFE_DELETE(i);
	SAFE_DELETE(i);
	SAFE_DELETE(i);
	SAFE_DELETE(i);

	return 0;
}
  • & 요렇게 생긴걸 이럴때 쓰는구나.