JavaSystem.Out Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The "standard" output stream.
[Android.Runtime.Register("out")]
public static Java.IO.PrintStream? Out { get; }
[<Android.Runtime.Register("out")>]
static member Out : Java.IO.PrintStream
Property Value
- Attributes
Remarks
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.
For simple stand-alone Java applications, a typical way to write a line of output data is: <blockquote>
System.out.println(data)
</blockquote>
See the println
methods in class PrintStream
.
Java documentation for java.lang.System.out
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.