February 2016
Beginner to intermediate
500 pages
187h 36m
English
A Java application is a computer program that executes when you use the java command to launch the Java Virtual Machine (JVM).First we consider a simple application that displays a line of text. Figure A.1 shows the program followed by a box that displays its output.

We insert comments to document programs and improve their readability. The Java compiler ignores comments, so they do not cause the computer to perform any action when the program is run.
The comment in line 1
// Fig. A. 1: Welcome1.java ...Read now
Unlock full access