jdk/src/java.base/share/classes/java/lang/System.java
changeset 32649 2ee9017c7597
parent 32033 bf24e33c7919
child 32834 e1dca5fe4de3
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    79      * The "standard" input stream. This stream is already
    79      * The "standard" input stream. This stream is already
    80      * open and ready to supply input data. Typically this stream
    80      * open and ready to supply input data. Typically this stream
    81      * corresponds to keyboard input or another input source specified by
    81      * corresponds to keyboard input or another input source specified by
    82      * the host environment or user.
    82      * the host environment or user.
    83      */
    83      */
    84     public final static InputStream in = null;
    84     public static final InputStream in = null;
    85 
    85 
    86     /**
    86     /**
    87      * The "standard" output stream. This stream is already
    87      * The "standard" output stream. This stream is already
    88      * open and ready to accept output data. Typically this stream
    88      * open and ready to accept output data. Typically this stream
    89      * corresponds to display output or another output destination
    89      * corresponds to display output or another output destination
   106      * @see     java.io.PrintStream#println(int)
   106      * @see     java.io.PrintStream#println(int)
   107      * @see     java.io.PrintStream#println(long)
   107      * @see     java.io.PrintStream#println(long)
   108      * @see     java.io.PrintStream#println(java.lang.Object)
   108      * @see     java.io.PrintStream#println(java.lang.Object)
   109      * @see     java.io.PrintStream#println(java.lang.String)
   109      * @see     java.io.PrintStream#println(java.lang.String)
   110      */
   110      */
   111     public final static PrintStream out = null;
   111     public static final PrintStream out = null;
   112 
   112 
   113     /**
   113     /**
   114      * The "standard" error output stream. This stream is already
   114      * The "standard" error output stream. This stream is already
   115      * open and ready to accept output data.
   115      * open and ready to accept output data.
   116      * <p>
   116      * <p>
   120      * or other information that should come to the immediate attention
   120      * or other information that should come to the immediate attention
   121      * of a user even if the principal output stream, the value of the
   121      * of a user even if the principal output stream, the value of the
   122      * variable <code>out</code>, has been redirected to a file or other
   122      * variable <code>out</code>, has been redirected to a file or other
   123      * destination that is typically not continuously monitored.
   123      * destination that is typically not continuously monitored.
   124      */
   124      */
   125     public final static PrintStream err = null;
   125     public static final PrintStream err = null;
   126 
   126 
   127     /* The security manager for the system.
   127     /* The security manager for the system.
   128      */
   128      */
   129     private static volatile SecurityManager security = null;
   129     private static volatile SecurityManager security = null;
   130 
   130