07 October 2010

0 How to add Comments in Java

How to add Comments in Java

In java, two kinds of commenting options are available, single line comments and multiline comments.

A single line comment in Java will start with //

A multi line comment starts with a /* and ends with a */

Single Line Comments in Java
// This is a single line comment in Java

Multi-Line Comments in Java
/* This is a multi line
comment
in Java */


0 comments:

Feeds Comments

Please give your valuable comments.