manipuladores ios unitbuf() función en C++

El método unitbuf() de los manipuladores de flujo en C++ se usa para establecer el indicador de formato unitbuf para el flujo str especificado. Este indicador vacía el búfer asociado después de cada operación.

Sintaxis:

ios_base& unitbuf (ios_base& str)

Parámetros: este método acepta str como parámetro, que es el flujo para el que se ve afectado el indicador de formato.

Valor de retorno: este método devuelve el flujo str con el indicador de formato unitbuf establecido.

Ejemplo 1:

// C++ code to demonstrate
// the working of unitbuf() function
  
#include <iostream>
#include <sstream>
  
using namespace std;
  
int main()
{
  
    // Initializing the character
    char a, b, c;
  
    // Stream input with leading whitespaces
    istringstream iss("GFG");
  
    // Using unitbuf()
    // buffer flushed 3 times
    iss >> unitbuf >> a >> b >> c;
  
    cout << "unitbuf flag: "
         << a << endl
         << b << endl
         << c << endl;
  
    return 0;
}
Producción:

unitbuf flag: G
F
G

Ejemplo 2:

// C++ code to demonstrate
// the working of unitbuf() function
  
#include <iostream>
#include <sstream>
  
using namespace std;
  
int main()
{
  
    // Initializing the character
    char a, b, c, d, e;
  
    // Stream input with leading whitespaces
    istringstream iss("GEEKS");
  
    // Using unitbuf()
    // buffer flushed 5 times
    iss >> unitbuf >> a >> b >> c >> d >> e;
  
    cout << "unitbuf flag: "
         << a << endl
         << b << endl
         << c << endl
         << d << endl
         << e << endl;
  
    return 0;
}
Producción:

unitbuf flag: G
E
E
K
S

Referencia: http://www.cplusplus.com/reference/ios/unitbuf/

Publicación traducida automáticamente

Artículo escrito por guptayashgupta53 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *