Java.io.PrintStream.setError() 方法

  • 描述

    Java.io.PrintStream.setError()方法设置为true时,流的错误状态。
  • 声明

    以下是protected void setError()方法的声明。
     protected void setError()
  • 参数

    x要打印的long值。
  • 返回值

    此方法不返回值。
  • 异常

    不适用
  • 例子

    以下示例显示java.io.PrintStream.setError()方法的用法。
     
    package com.jc2182;
    
    import java.io.*;
    
    public class PrintStreamDemo extends PrintStream {
    
       public PrintStreamDemo(OutputStream out) {
          super(out);
       }
    
       public static void main(String[] args) {
          byte c[] = {70, 71, 72, 73, 74, 75, 76};
    
          // create printstream object
          PrintStreamDemo ps = new PrintStreamDemo(System.out);
    
          // write bytes 1-3
          ps.write(c, 1, 3);
    
          // flush the stream
          ps.flush();
    
          // set an internal error
          ps.setError();
       }
    }
    
    让我们编译并运行以上程序,这将产生以下结果-
     
    GHI