标签:resize pre c++ print color start bsp ... scp
std::string str_fmt(const char * _Format, ...) { std::string _str; va_list marker = NULL; va_start(marker, _Format); size_t num_of_chars = _vscprintf(_Format, marker); _str.resize(num_of_chars); vsprintf_s((char *)_str.c_str(), num_of_chars + 1, _Format, marker); va_end(marker); return _str; }
标签:resize pre c++ print color start bsp ... scp
原文地址:https://www.cnblogs.com/wangshaowei/p/9462199.html