Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
814 views
in Technique[技术] by (71.8m points)

java - Is System.out buffered or unbuffered?

Is System.out buffered or unbuffered?

I read this is an object of InputStream and PrinterStream is the type of object referenced by System.out.

And they Both are Unbuffered so Why println() flushes the unbuffered...is it possible to flush unbuffered and I have read they are written immediately.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

System.out is the "standard" output. On most operating systems that terminal io is buffered, and paging is supported.

From the Javadoc,

The "standard" output stream. This stream is already open and ready to accept output data. Typically this stream corresponds to display output or another output destination specified by the host environment or user.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...