Comments in Java, like comments in most programming languages, do not show up in the executable program. Thus, you can add as many comments as needed without fear of bloating the code. Java has three ways of marking comments. The most common method is a //. You use this for a comment that will run from the // to the end of the line. System.out.println("We will not use 'Hello, World!'"); // is this too cute? When longer comments are needed, you can mark each line with a //. Or you can use the /* and */ comment delimiters that let you block off a longer comment. This is shown in Example 3-1. Example 3-1. FirstSample.java1. /* 2. This is the first sample program in Core Java Chapter 3 3. Copyright (C) 1997 Cay Horstmann and Gary Cornell 4. */ 5. 6. public class FirstSample 7. { 8. public static void main(String[] args) 9. { 10. System.out.println("We will not use 'Hello, World!'"); 11. } 12. } Finally, a third kind of comment can be used to generate documentation automatically. This comment uses a /** to start and a */ to end. For more on this type of comment and on automatic documentation generation, see Chapter 4. CAUTION
|