C

#ifdef  //是否定义

#else

#endif

 

#define DELETE_POINTER(p)

do

{

if(p!=NULL)

free(p);

p=NULL;

}while(0)

posted on 2016-07-28 11:41 洛翼mwk 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/luoyimwk/p/5714236.html