可能重复:
如何在 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+'