... char[MAX_LOG]; char *log = new char[MAX_LOG]; //内存泄露 vsnprintf(buffer, MAX_LOG, fmt, args); // 可以避免的拷贝 snprintf(log, MAX_LOG, ...
確定! 回上一頁