El método flush() de PrintStream Class en Java se usa para vaciar el flujo. Al vaciar la corriente, significa limpiar la corriente de cualquier elemento que pueda estar o no dentro de la corriente. No acepta ningún parámetro ni devuelve ningún valor.
Sintaxis:
public void flush()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método no devuelve ningún valor. Simplemente vacía el Stream.
Los siguientes métodos ilustran el funcionamiento del método flush():
Programa 1:
// Java program to demonstrate // PrintStream flush() method import java.io.*; class GFG { public static void main(String[] args) { // The string to be written in the Stream String str = "GeeksForGeeks"; try { // Create a PrintStream instance PrintStream stream = new PrintStream(System.out); // Write the above string to this stream // This will put the string in the stream // till it is printed on the console stream.print(str); // Now clear the stream // using flush() method stream.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GeeksForGeeks
Programa 2:
// Java program to demonstrate // PrintStream flush() method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintStream instance PrintStream stream = new PrintStream(System.out); // Write the char to this stream // This will put the char in the stream // till it is printed on the console stream.write(65); // Now clear the stream // using flush() method stream.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
A
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA