vsnprintf可变参数的问题

时间:2013-11-13 13:36:21

标签: c++ xcode

以下代码将在Visual Studio 2012上提供预期结果,但不会在XCode 5.0上提供。我错过了什么?

static std::string format(const std::string fmt, ...)
{
    va_list vl;
    va_start(vl, fmt);
    int size=vsnprintf(0, 0, fmt.c_str(), vl);

    if(size<1)
        return std::string();


    char szBuf[256];

    vsnprintf(szBuf, 256, fmt.c_str(), vl);

    return szBuf;
}

电话:

for(int no=1;no<10;no++)
{
    std::string strPath=format("entry%02d.txt",no);
}

将在Windows上生成正确的“entry01.txt”,但在带有XCode的OSX上为“entry1852125044.txt”。

以上代码缩短以关注问题。这就是看起来奇怪的原因(要求尺寸而不是使用它)。我还需要处理格式字符串。

1 个答案:

答案 0 :(得分:6)

您尝试迭代va_list两次,每次调用vsnprintf一次。您需要将每个迭代括在va_start/va_end对中:

//...
va_start(vl, fmt);
int size=vsnprintf(0, 0, fmt.c_str(), vl);
va_end(v1);

//...

va_start(vl, fmt);
vsnprintf(szBuf, 256, fmt.c_str(), vl);
va_end(vl);