8

可能重复:
如何在 C++ 中将数字转换为字符串,反之亦然

如何string在 C++ 中将整数值转换为 a?

这是我尝试过的:

for(size_t i = 0;vecServiceList.size()>i;i++)
{
    if ( ! vecServiceList[i].empty() )
    {
        string sService = "\t" + i +". "+  vecServiceList[i] ;
    }
}

这是错误:

invalid operands of types 'const char*' and 'const char [3]' to binary 'operator+'
4

1 回答 1

21

您可以使用字符串流:

#include <sstream>

...


for (size_t i = 0; ... ; ...)
{
    std::stringstream ss;

    ss << "\t" << i << vecServiceList[i];

    std::string sService = ss.str();

    // do what you want with sService
}
于 2012-05-09T05:07:27.787 回答