c ++ stringstream将字符串变量与整数和文字字符串连接起来

时间:2013-10-11 21:32:21

标签: c++ concatenation stringstream

有点新的c ++并尝试将不同类型和文字字符串的变量连接在一起以便稍后创建格式化输出,但是一旦我添加任何带有引号的文字字符串,例如“This in quotes”等,我就会收到错误,下面是我试图做的代码,任何帮助都会有很长的路要走

 string format;

 std::stringstream stream;
 stream << "Work Ticket # "<< workTicket << " "<< clientNumber << "(" <<labDay << "/"<     labMonth << "/"<< labYear <<") : "<< labDesc;
 format = stream.str();

1 个答案:

答案 0 :(得分:1)

您的代码中似乎存在拼写错误:

...labDay << "/"<     labMonth...

应该阅读

...labDay << "/" << labMonth...

你的确切错误信息是什么?