#define RELEASE( x )if( x != NULL ) { x->Release(); x = NULL; } 还有这个#define FREE(p) if( p ) { free(p); p=NULL; } 查看完整描述