El método close() de PrintStream Class en Java se usa para cerrar la transmisión. Al cerrar una transmisión, se desasigna cualquier valor en ella o cualquier recurso asociado con ella. La instancia de PrintStream una vez cerrada no funcionará. Además, una instancia de PrintStream una vez cerrada no se puede volver a cerrar.
Sintaxis:
public void close()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método no devuelve ningún valor. Simplemente cierra el Stream.
Los siguientes métodos ilustran el funcionamiento del método close():
Programa 1:
// Java program to demonstrate // PrintStream close() 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 close the stream // using close() method stream.close(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GeeksForGeeks
Programa 2:
// Java program to demonstrate // PrintStream close() 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 close the stream // using close() method stream.close(); } 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