Consider this Scanner
input example.
Scanner user_input = new Scanner( System.in );
Here Scanner
is the CLASS.
The Scanner constructor's parameter System.in references the static InputStream field in defined in the final System class. As a static field in requires its class identifier.
Oracle states that in is the "standard" input stream1, not that System.in is. The quotes around standard likely refer to the irony that inputting from a keyboard using a command line interface is no longer the standard, what with them newfangled GUIs and all.