请教各位版上大大
当stringstream里有int和
char型别的资料
要怎么各别输出呢?
以下是我的程式
#include <iostream>
#include <string>
#include <sstream>.
using namespace std;
int main()
{
int a = 92;
string b = 'b';
stringstream ss;
ss << a;
ss << b;
return 0;
}
如果我额外用一个string temp;
temp = ss.str();
cout << temp;
如此一来 会直接输出92b 且92会变成char而不是int
有什么方法可以输出
92b 且92是原来的int b是原来的char型别
谢谢