| Author |
Read from keyboard, Scanner or
|
abalfazl hossein
Ranch Hand
Joined: Sep 06, 2007
Posts: 602
|
|
What is the advantage of usage BufferedReader vs scanner while reading from keyboard?
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32599
|
|
abalfazl hossein wrote: . . . What is the advantage of usage BufferedReader vs scanner while reading from keyboard?
None. But it's Scanner not scanner.
|
 |
Ashish Schottky
Ranch Hand
Joined: Dec 29, 2009
Posts: 93
|
|
There is no advantage of using Scanner against BufferedReader,but it makes reading from keyboard easier in terms of programing.
In BufferedReader, one has to take input in terms of String and then parse it into required data-type, this can be avoided using Scanner can easily take inputs without conversions.
But its not an advantage, it just makes life of programmer simpler.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32599
|
|
|
I think that is an advantage of using Scanner vs BufferedReader.
|
 |
 |
|
|
subject: Read from keyboard, Scanner or
|
|
|