void println(String x) void println(Object x) protected void setError 描述 所述java.io.PrintStream.println()方法打印String,然后终止该行。此方法的行为就像调用print(String)然后调用println()一样。 声明 以下是java.io.PrintStream.println()方法的声明。 public void println(String x) 参数 x - 要打印的字符串。 返回值 此方法不返回值。 异常 NA 实例 以下示例显示了java.io.PrintStream.println()方法的用法。 package com.tutorialspoint; import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { String c = "Hello World"; // create printstream object PrintStream ps = new PrintStream(System.out); // print a string and change line ps.println(c); ps.print("New Line"); // flush the stream ps.flush(); } } 让我们编译并运行上面的程序,这将产生以下结果 Hello World New Line void println(Object x) protected void setError