I have three questions.
To explain, I was reviewing someone\'s code, and noticed BufferedReader
s sometimes aren\'t being closed. Usually, Eclipse gives a w
Doesn't highlight and it's true, because a stream can be closed somewhere else out of the call method.
If it's closed within the call method that other threads may be using it at the moment.
With the BufferdRreader
nothing but if you loose the reference to stream and cannot close it and this leads to a memory leak.