Compartir a través de


strstreambuf::freeze

Haga un búfer de la secuencia no esté disponible con operaciones de búfer de la secuencia.

void freeze(
   bool _Freezeit = true
);

Parámetros

  • _Freezeit
    bool que indica si desea que la secuencia que se inmovilizará.

Comentarios

Si _Freezeit es true, la función modifica el modo almacenado de strstreambuf para crear la secuencia controlada inmovilizada.si no, crea la secuencia controlada no inmovilizada.

str implica freeze.

[!NOTA]

Un búfer inmovilizados no se liberado durante la destrucción de strstreambuf .Debe liberar el búfer antes de que se libere para evitar una pérdida de memoria.

Ejemplo

// 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

encabezado: <strstream>

espacio de nombres: std

Vea también

Referencia

strstreambuf Class

programación iostream

convenciones de iostreams