Java PrintStream println()方法

java.io.PrintStream.println() 方法通过写入行分隔符字符串终止当前行。行分隔符字符串由系统属性line.separator定义,不一定是单个换行符('\n')。

1 语法

public void println()

2 参数

3 返回值

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */

/**
 * java.io.PrintStream.println() 方法的例子
 */
import java.io.*;

public class Demo {
    public static void main(String[] args) {


        // create printstream object
        PrintStream ps = new PrintStream(System.out);

        // print this string
        ps.print("This is a String");

        // print new line
        ps.println();

        // print a new string
        ps.println("New line");

        // flush the stream
        ps.flush();
    }
}

输出结果为:

This is a String
New line

热门文章

优秀文章