Java PrintWriter print()方法

java.io.PrintWriter.print(float f) 方法打印一个float浮点数。根据平台的默认字符编码,将String.valueOf(float)生成的字符串转换为字节,并以write(int)方法的方式写入这些字节。

1 语法

public void print(float f)

2 参数

f:要打印的浮点数。

3 返回值

4 示例 

package com.yiidian;

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

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

public class Demo {
    public static void main(String[] args) {
        float f = 1234.56f;

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

        // print float
        pw.print(f);

        // change the line
        pw.println();

        // print another float
        pw.print(1.23f);

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

输出结果为:

1234.56
1.23

热门文章

优秀文章