#include <iostream>
using namespace std;
#define SAFETY_CHECK(ptr) \
{ \
if (ptr == nullptr) \
{ \
cout << "Reference is NULL" << endl; \
return false; \
} \
else \
cout << "Reference is not NULL" << endl; \
return true; \
} \
template<typename T>
bool IsSafe(T* ptr) { SAFETY_CHECK(ptr); }
#define SAFE_DELETE(ptr) if(IsSafe(ptr)) delete ptr
class Test
{
public:
Test()
{
cout << "생성자 호출" << endl;
}
~Test()
{
cout << "소멸자 호출" << endl;
}
};
int main()
{
Test* p = new Test();
SAFE_DELETE(p);
return 0;
}
'프로그래밍 언어 > C++' 카테고리의 다른 글
C++ inout형 포인터 *& (0) | 2022.09.02 |
---|---|
C++ 클래스 배열 포인터 및 2차원 배열 포인터 (0) | 2022.09.01 |
C++ 포인터 객체 자살 (delete this) (0) | 2022.08.24 |
C++ 정적 바인딩과 동적 바인딩의 차이점 (0) | 2022.08.21 |
C++ 중괄호 초기화 (0) | 2022.08.19 |