According to the documentation, BufferedReader(Reader)
uses a default buffer size, while the second constructor, BufferedReader(Reader, int)
allows the buffer size to be set.
public BufferedReader(Reader in)
Creates a buffering character-input stream that uses a default-sized input buffer.
However, the docs do not not mention what the default buffer size is.
What is the default buffer size of a BufferedReader?