的我有以下的代碼: #include <sstream>
#include <iostream>
using namespace std;
int main()
{
string inp, s;
istringstream iss;
do
{
getline (cin, inp);
iss(inp);
int a
我需要從流 - istringstream(在main())中打印一些數據。 例如: void Add (istream & is)
{
string name;
string surname;
int data;
while (//something)
{
// Here I need parse stream
co
我有這樣一段代碼: if(flag == 0)
{
// converting string value to integer
istringstream(temp) >> value ;
value = (int) value ; // value is a
}
我不知道如果我使用istringstream運營權。我想將變量「值」轉換爲整數。 Compiler error : I