The Java documentation page for the System class says that one of its fields is called "out":
static PrintStream out
If I then look at the doc page for the PrintStream class, it says that one of its inherited fields is called "out". If I then click on this particular "out hyperlink" on that doc page, it provides a bit more detail:
protected OutputStream out
I'm confused about these two variables called "out". Are they two completely seperate variables?