Java PrintWriter print()方法
java.io.PrintWriter.print(boolean b) 方法打印一个布尔值。根据平台的默认字符编码,将String.valueOf(boolean)生成的字符串转换为字节,并且这些字节完全按照write(int)方法的方式写入。
1 语法
public void print(boolean b)
2 参数
b:要打印的布尔值。
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.PrintWriter.print(boolean b)方法的例子
*/
import java.io.*;
public class Demo {
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
热门文章
优秀文章