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