博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
printstream_Java PrintStream flush()方法与示例
阅读量:2538 次
发布时间:2019-05-11

本文共 1656 字,大约阅读时间需要 5 分钟。

printstream

PrintStream类flush()方法 (PrintStream Class flush() method)

  • flush() method is available in java.io package.

    flush()方法在java.io包中可用。

  • flush() method is used to flush this PrintWriter stream with the help of writing bytes to the underlying output stream of any buffered output then after flushing the stream.

    flush()方法用于在将字节写入任何缓冲输出的基础输出流之后,然后在刷新流之后,刷新此PrintWriter流。

  • flush() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    flush()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • flush() method does not throw an exception at the time of flushing the stream.

    flush()方法在刷新流时不会引发异常。

Syntax:

句法:

public void flush();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of the method is void, it returns nothing.

该方法的返回类型为void ,不返回任何内容。

Example:

例:

// Java program to demonstrate the example // of void flush() method of // PrintStreamimport java.io.*;public class FlushOfPS {
public static void main(String[] args) {
String str = "Java Programming"; // Instantiates PrintStream PrintStream p_stm = new PrintStream(System.out); // Display str p_stm.println("str: " + str); // By using flush() method is to // flush the stream immediately p_stm.flush(); System.out.println("Stream Flushed..."); // By using close() method is to // close the stream p_stm System.out.println("Stream Shutdown...."); p_stm.close(); }}

Output

输出量

str: Java ProgrammingStream Flushed...Stream Shutdown....

翻译自:

printstream

转载地址:http://ckozd.baihongyu.com/

你可能感兴趣的文章
ajax跨域,携带cookie
查看>>
阶段3 2.Spring_01.Spring框架简介_03.spring概述
查看>>
阶段3 2.Spring_02.程序间耦合_1 编写jdbc的工程代码用于分析程序的耦合
查看>>
阶段3 2.Spring_01.Spring框架简介_04.spring发展历程
查看>>
阶段3 2.Spring_02.程序间耦合_3 程序的耦合和解耦的思路分析1
查看>>
阶段3 2.Spring_02.程序间耦合_5 编写工厂类和配置文件
查看>>
阶段3 2.Spring_01.Spring框架简介_05.spring的优势
查看>>
阶段3 2.Spring_02.程序间耦合_7 分析工厂模式中的问题并改造
查看>>
阶段3 2.Spring_02.程序间耦合_4 曾经代码中的问题分析
查看>>
阶段3 2.Spring_03.Spring的 IOC 和 DI_2 spring中的Ioc前期准备
查看>>
阶段3 2.Spring_03.Spring的 IOC 和 DI_4 ApplicationContext的三个实现类
查看>>
阶段3 2.Spring_02.程序间耦合_8 工厂模式解耦的升级版
查看>>
阶段3 2.Spring_03.Spring的 IOC 和 DI_6 spring中bean的细节之三种创建Bean对象的方式
查看>>
阶段3 2.Spring_04.Spring的常用注解_3 用于创建的Component注解
查看>>
阶段3 2.Spring_04.Spring的常用注解_2 常用IOC注解按照作用分类
查看>>
阶段3 2.Spring_09.JdbcTemplate的基本使用_5 JdbcTemplate在spring的ioc中使用
查看>>
阶段3 3.SpringMVC·_07.SSM整合案例_02.ssm整合之搭建环境
查看>>
小D课堂 - 零基础入门SpringBoot2.X到实战_第1节零基础快速入门SpringBoot2.0_3、快速创建SpringBoot应用之手工创建web应用...
查看>>
阶段3 3.SpringMVC·_07.SSM整合案例_04.ssm整合之编写SpringMVC框架
查看>>
小D课堂 - 零基础入门SpringBoot2.X到实战_第1节零基础快速入门SpringBoot2.0_5、SpringBoot2.x的依赖默认Maven版本...
查看>>