我是靠谱客的博主 发嗲万宝路,这篇文章主要介绍java print int_Java PrintWriter print(int)用法及代码示例,现在分享给大家,希望可以做个参考。

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内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(109)

评论列表共有 0 条评论

立即
投稿
返回
顶部