請教各位版上大大
當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型別
謝謝