Java.io.PrintWriter.print(double d)方法實例
java.io.PrintWriter.print() 方法打印一個雙精度浮點數。通過String.valueOf(double)生成的字符串轉換成字節按照平台的默認字符編碼,這些字節被寫在write(int)方法。
聲明
以下是java.io.PrintWriter.print()方法的聲明
public void print(double d)
參數
-
d -- 要被打印的雙精度-double
返回值
此方法不返回任何值。
異常
-
NA
例子
下麵的示例演示java.io.PrintWriter.print()方法的用法。
package com.yiibai; import java.io.*; public class PrintWriterDemo { 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