strstreambuf::freeze
Powoduje, że bufor strumienia będzie dostępny za pośrednictwem buforowych strumienia.
void freeze(
bool _Freezeit = true
);
Parametry
- _Freezeit
A bool wskazująca, czy ma zostać zamrożone strumienia.
Uwagi
Jeśli _Freezeit ma wartość true, funkcja zmienia przechowywane strstreambuf tryb aby kontrolowanych sekwencji zamrożone.W przeciwnym razie dzięki kontrolowanych sekwencji nie zamrożone.
str implies freeze.
[!UWAGA]
Mrożone buforu nie zostanie zwolniona podczas strstreambuf zniszczenia.Bufor musi Odblokuj przed jest zwolniona w celu uniknięcia przeciek pamięci.
Przykład
// strstreambuf_freeze.cpp
// compile with: /EHsc
#include <iostream>
#include <strstream>
using namespace std;
void report(strstream &x)
{
if (!x.good())
cout << "stream bad" << endl;
else
cout << "stream good" << endl;
}
int main()
{
strstream x;
x << "test1";
cout << "before freeze: ";
report(x);
// Calling str freezes stream.
cout.write(x.rdbuf()->str(), 5) << endl;
cout << "after freeze: ";
report(x);
// Stream is bad now, wrote on frozen stream
x << "test1.5";
cout << "after write to frozen stream: ";
report(x);
// Unfreeze stream, but it is still bad
x.rdbuf()->freeze(false);
cout << "after unfreezing stream: ";
report(x);
// Clear stream
x.clear();
cout << "after clearing stream: ";
report(x);
x << "test3";
cout.write(x.rdbuf()->str(), 10) << endl;
// Clean up. Failure to unfreeze stream will cause a
// memory leak.
x.rdbuf()->freeze(false);
}
Wymagania
Nagłówek: <strstream>
Obszar nazw: std