Java PrintStream flush()方法
java.io.PrintStream.flush() 方法刷新流。这是通过写任何缓冲的输出字节底层输出流,然后该流刷新完成。
1 语法
public void flush()
2 参数
无
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.PrintStream.flush()方法的例子
*/
import java.io.*;
public class Demo {
public static void main(String[] args) {
String s = "Hello World.";
// create printstream object
PrintStream ps = new PrintStream(System.out);
// print our string
ps.print(s);
// flush the stream to see the results
ps.flush();
// print new string
ps.println();
ps.print("This is an example");
// flush to see new string
ps.flush();
}
}
输出结果为:
Hello World.
This is an example
热门文章
优秀文章