Buffered vs non buffered, which one to use?

我只是一个虾纸丫 提交于 2019-12-31 21:43:14

问题


I am sorry if this is a duplicate but I was not able to find a definitive answer to what is the best practice for each type.

I would like to know what the appropriate conditions are that define when to use BufferedReader vs FileReader or BufferedInput/OutputStream vs FileInput/OutputStream? Is there a formula of sorts that will always tell you what is appropriate?

Should I just always used buffered?

Thanks


回答1:


Use a buffer if the stream is going to have lots of small access. Use unbuffered if you are going to have relatively few, relatively large accesses.




回答2:


The only time you should use unbuffered I/O is when the delay and aggregation imposed by buffering is inappropriate to your application.




回答3:


" Is there a formula of sorts that will always tell you what is appropriate?"

If there was, it would already be in the libraries and would not be a design decision that you would have to make.

Since there's no pat answer, you have to make the design decision, you have to actually think about it.

Or, you can try both options and see which is "better" based on your unique problem and your unique criteria.

Most standard I/O libraries are buffered. That's a hint that most I/O benefits from buffering. But not all. Games, for instance, need unbuffered access to the game controls.




回答4:


Keep in mind also that the BufferedReader provides you with a convenience readLine() method that allows you to read your content one line at a time.




回答5:


I suggest you use Buffered* if this makes your application go faster, otherwise I wouldn't bother with it. i.e. try it with realistic data for see whether it helps.



来源:https://stackoverflow.com/questions/1088602/buffered-vs-non-buffered-which-one-to-use

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!