strstreambuf::freeze
Faz com que um buffer de fluxo não está disponível com operações do buffer de fluxo.
void freeze(
bool _Freezeit = true
);
Parâmetros
- _Freezeit
bool que indica se você deseja que o fluxo a ser congelado.
Comentários
Se _Freezeit for true, a função altera o modo armazenado de strstreambuf para fazer a sequência controlada congelada. Se não, faz a sequência controlada não congelada.
str implica freeze.
Dica
Um buffer congelado não será liberado durante a destruição de strstreambuf .Você deve descongelar o buffer antes que seja liberado para evitar um vazamento de memória.
Exemplo
// 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);
}
Requisitos
strstream <deCabeçalho: >
Namespace: std