java.io.PrintWriter.print(int i)方法實例
java.io.PrintWriter.print() 方法打印一個整數。通過String.valueOf(int)生成的字符串轉換為字節按照平台的默認字符編碼,這些字節被寫在write(int) 方法。
聲明
以下是java.io.PrintWriter.print()方法的聲明
public void print(int i)
參數
-
i -- 要打印整數
返回值
此方法不返回任何值。
異常
-
NA
例子
下麵的示例演示java.io.PrintWriter.print()方法的用法。
package com.yiibai; import java.io.*; public class PrintWriterDemo { public static void main(String[] args) { int i = 1234; // create a new writer PrintWriter pw = new PrintWriter(System.out); // print int pw.print(i); // change the line pw.println(); // print another int pw.print(567); // flush the writer pw.flush(); } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
1234 567