码迷,mamicode.com
首页 > 其他好文 > 详细

std::string stringf(const char* format, ...)

时间:2015-01-19 10:45:14      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:

std::string stringf(const char* format, ...)
{
va_list arg_list;

va_start(arg_list, format);

// SUSv2 version doesn‘t work for buf NULL/size 0, so try printing
// into a small buffer that avoids the double-rendering and alloca path too...
char short_buf[256];
const size_t needed = vsnprintf(short_buf, sizeof short_buf,
format, arg_list) + 1;
if (needed <= sizeof short_buf)
return short_buf;

// need more space...
char* p = static_cast<char*>(alloca(needed));
vsnprintf(p, needed, format, arg_list);
return p;
}

std::string stringf(const char* format, ...)

标签:

原文地址:http://www.cnblogs.com/ytjjyy/p/4233046.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!