Why system.out?

Why do we write system.out when we want to output text in java? what does this mean, can anyone help ?

Author: Beernandos, 2019-08-11

1 answers

Superficially, but still.

System is the last class from the java.lang package.

Out is a PrintStream class variable declared in the System class.

Println - method of the PrintStream class.

 0
Author: Quickneed, 2019-08-11 00:35:41