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