我是靠谱客的博主 发嗲万宝路,最近开发中收集的这篇文章主要介绍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 print int_Java PrintWriter print(int)用法及代码示例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部