0
Is out a subclass of the system class in java.
3 Antworten
+ 2
PRINCE out it's an instance of PrintStream type, which is a public and static member field of the System class
+ 1
Amine Laaboudi thanks very much but I'd be happy if you could elaborate more on the topic
+ 1
PRINCE
public static final PrintStream out is 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.
/** */
https://www.geeksforgeeks.org/java-lang-system-class-java/amp/