Java - Comments

 Java - Comments

Java supports single-line and multi-line comments very similar to C and C++. All characters available inside any comment are ignored by Java compiler.

Example

public class MyFirstJavaProgram

{

/* This is my first java program.

* This will print 'Hello World' as the output

* This is an example of multi-line comments.*/

             public static void main(String []args)

{

// This is an example of single line comment

/* This is also an example of single line comment. */

System.out.println("Hello World");

}

}

Output

Hello World

Comments

Popular posts from this blog

Courses After 12th Science

MS Office Versions List

Computer - Network Topologies