概述
Java中的PrintWriter类的print(int)方法用于在流上打印指定的int值。此int值用作参数。
用法:
public void print(int intValue)
参数:此方法接受强制参数intValue,该参数是要写入流中的int值。
返回值:此方法不返回任何值。
下面的方法说明了print(int)方法的用法:
示例1:
// Java program to demonstrate
// PrintWriter print(int) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a PrintWriter instance
PrintWriter printr
= new PrintWriter(System.out);
// Print the int value '4'
// to this stream using print() method
// This will put the intValue in the
// stream till it is printed on the console
printr.print(4);
printr.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
4
示例2:
// Java program to demonstrate
// PrintWriter print(int) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a PrintWriter instance
PrintWriter printr
= new PrintWriter(System.out);
// Print the int value '65'
// to this stream using print() method
// This will put the intValue in the
// stream till it is printed on the console
printr.print(65);
printr.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
65
最后
以上就是发嗲万宝路为你收集整理的java print int_Java PrintWriter print(int)用法及代码示例的全部内容,希望文章能够帮你解决java print int_Java PrintWriter print(int)用法及代码示例所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复