Java PrintWriter println()方法
java.io.PrintWriter.println() 方法通过写入行分隔符字符串终止当前行。行分隔符字符串由系统属性line.separator定义,不一定是单个换行符('\n')。
1 语法
public void println()
2 参数
无
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.PrintWriter.println()方法的例子
*/
import java.io.*;
public class Demo {
public static void main(String[] args) {
String s = "Hello world.";
// create a new writer
PrintWriter pw = new PrintWriter(System.out);
// print string
pw.print(s);
// change the line twice
pw.println();
pw.println();
// print another string
pw.print("Two lines skipped.");
// flush the writer
pw.flush();
}
}
输出结果为:
Hello world.
Two lines skipped.
热门文章
优秀文章