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