Java.io.PrintWriter.print() 方法
-
描述
Java.io.PrintWriter.print()方法打印一个长整数。根据平台的默认字符编码,将String.valueOf(long)生成的字符串转换为字节,然后以write(int)方法的确切方式写入这些字节。 -
声明
以下是protected void print()方法的声明。public void print(long l)
-
参数
l-要打印的long值。 -
返回值
此方法不返回值。 -
异常
不适用。 -
例子
以下示例显示java.io.PrintWriter.print()方法的用法。package com.jc2182; import java.io.*; public class PrintWriterDemo { public static void main(String[] args) { long i = 4854587375487354l; // create a new writer PrintWriter pw = new PrintWriter(System.out); // print long pw.print(i); // change the line pw.println(); // print another long pw.print(12315436474l); // flush the writer pw.flush(); } }
让我们编译并运行以上程序,这将产生以下结果-4854587375487354 12315436474