Java PrintWriter print()方法

java.io.PrintWriter.print(double d) 方法打印double浮点数。根据平台的默认字符编码,将String.valueOf(double)生成的字符串转换为字节,并且这些字节完全按照write(int)方法的方式写入。

1 语法

public void print(double d)

2 参数

d:要打印的double。

3 返回值

4 示例 

package com.yiidian;

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

/**
 * java.io.PrintWriter.print(double d)方法的例子
 */
import java.io.*;

public class Demo {
    public static void main(String[] args) {
        double d = 1234.567;

        // create a new writer
        PrintWriter pw = new PrintWriter(System.out);

        // print double
        pw.print(d);

        // change the line
        pw.println();

        // print another double
        pw.print(987.654);

        // flush the writer
        pw.flush();
    }
}

输出结果为:

1234.567
987.654

热门文章

优秀文章