Método PrintStream setError() en Java con ejemplos

El método setError() de PrintStream Class en Java se usa para establecer el estado de error de esta instancia de PrintStream. Este método se utiliza como indicador para indicar que se ha producido un error en el flujo. Está protegido y, por lo tanto, debe implementarse derivando la clase PrintStream para usarlo.

Sintaxis:

protected void setError()

Parámetros: Este método no acepta ningún parámetro.

Valor devuelto: este método no devuelve nada.

Los siguientes métodos ilustran el funcionamiento del método setError():

Programa 1:

// Java program to demonstrate
// PrintStream setError() method
  
import java.io.*;
  
// extending the PrintStream Class
class GFG extends PrintStream {
  
    // Defining the protected constructor
    public GFG(OutputStream out)
    {
        super(System.out);
    }
  
    // Driver Code
    public static void main(String[] args)
    {
  
        // The string to be written in the Stream
        String str = "GeeksForGeeks";
  
        try {
  
            // Create a GFG instance
            GFG stream
                = new GFG(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);
  
            stream.flush();
  
            // Use the protected setError() method
            stream.setError();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Producción:

GeeksForGeeks

Programa 2:

// Java program to demonstrate
// PrintStream setError() method
  
import java.io.*;
  
// extending the PrintStream Class
class GFG extends PrintStream {
  
    // Defining the protected constructor
    public GFG(OutputStream out)
    {
        super(System.out);
    }
  
    // Driver Code
    public static void main(String[] args)
    {
  
        try {
  
            // Create a GFG instance
            GFG stream
                = new GFG(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);
  
            stream.flush();
  
            // Use the protected setError() method
            stream.setError();
        }
        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

Deja una respuesta

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