Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created January 12, 2020 07:08
Show Gist options
  • Save uncoded-ro/07458a4b33fa4502783f97750835720b to your computer and use it in GitHub Desktop.
Save uncoded-ro/07458a4b33fa4502783f97750835720b to your computer and use it in GitHub Desktop.
public final class System {
...
/**
* The "standard" input stream. This stream is already
* open and ready to supply input data. Typically this stream
* corresponds to keyboard input or another input source specified by
* the host environment or user.
*/
public static final InputStream in = null;
...
/**
* The "standard" output stream. This stream is already
* open and ready to accept output data. Typically this stream
* corresponds to display output or another output destination
* specified by the host environment or user.
*/
public static final PrintStream out = null;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment