The java docs says “Methods to access the character-based console device, if any, associated with the current Java virtual machine.”.What is the meaning of this sentence?
The java docs says Methods to access the character-based console device, if any, associated
Share
Roughly: the console = the terminal = the command line.
That is the (usually) black screen that you can use to start your program (with
java YourClass), and where you can read parameters from or write to.The
Consoleobject is an easier-to-use alternative toSystem.inandSystem.out