LINUX.ORG.RU

Вызови str("") - с параметром.

hbee ★★★★
()

#include <iostream>
//#include <sstream>
#include <strstream>

using namespace std;

int main() {
/*
    stringstream s;
    string t;
    s << "12";
    s >> t;
    s.clear();
    cout << t << endl;
    s << "14";
    s >> t;
    cout << t << endl;
*/
    strstream s;
    string t;
    s << "12";
    s >> t;
    s.clear();
    cout << t << endl;
    s << "14";
    s >> t;
    cout << t << endl;
    return 0;
}

и закомментированное, и текущий код прекрасно работают :-/ G++ v 3.2.2

Spectr ★★★
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.