Printing to Standard Output
Printing to Standard Output
-
Okay, as you saw last page, you can direct Java to print to standard output
using the System.out.println() method.
-
We will talk more about the specifics of methods, but for the time being
it would be good for you to know that you can print to the command line
or to the Java Console using
System.out.println(string);
For example:
System.out.println("Hello Cyberspace!");
The System class has quite a few methods which allow you to do more than
just print of course. To read about these methods, simply use the online
documentation. We will talk about how to efficiently use the online documentation
a little bit later but you should know that you can find the System class
in the java.lang package.
Comments
Table of Contents
Variables
|