Java PrintStream println()方法

java.io.PrintStream.println(long x) 方法打印一个long ,然后终止该行。此方法的行为就像先调用print(long)然后调用println()。

1 语法

public void println(long x)

2 参数

x:要打印的long。

3 返回值

4 示例 

package com.yiidian;

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

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

public class Demo {
    public static void main(String[] args) {
        long c = 1512344125l;

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

            // print a long and change line
            ps.println(c);
            ps.print("New Line");

            // flush the stream
            ps.flush();

        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }
}

输出结果为:

1512344125
New Line

热门文章

优秀文章