Comments
In this lesson, we will learn to write explanatory comments within a Java program.
We'll cover the following...
Why use comments
Novice programmers tend to omit comments. But comments provide an opportunity for us to document our thoughts about what our program does and how it solves the problem at hand. Although comments are important to others who read our program, we should realize that they are useful to us, too. Typical programs are written over a period of time. What might be obvious to you today could be baffling next week.
See the program given below:
Press + to interact
// Sample.java by F. M. Carrano// Displays strings and provides an example of a Java application.public class Sample{public static void main(String[] args){// Demonstrate printlnSystem.out.println("This string is displayed on one line.");System.out.println("This string appears on the second line.");System.out.println(); // The third line displayed is blank// Demonstrate printSystem.out.print("Four ");System.out.print("and twenty ");System.out.println("blackbirds");System.out.println("Baked in a pie.");} // End main} // End Sample
Single-line comments
The program given above showed one kind of Java comment: a line that begins with two slashes. We use this form of comments within the ...