구리의 창고

C++ - delete and null pointer 본문

Programming

C++ - delete and null pointer

구리z 2011. 9. 29. 11:53
delete 시에는 아래와 같이 NULL 인지 아닌지 체크해줄 필요가 없다.

 
if (p) //useless
{
	delete p;
}

'Programming' 카테고리의 다른 글

TESSERACT - mftraining 에서 segmatation error 가 날 때  (0) 2012.06.01
VS2008 Profiler - vsperfmd  (0) 2011.10.21
vim 기본 환경 설정법  (0) 2011.05.12
CString 을 double로 변환하기  (0) 2010.05.12
class 재정의 문제  (0) 2010.05.01
Comments