Tuesday 4 August 2015

Java Tutorial : Source Code Comments


Click here to watch in Youtube :
https://www.youtube.com/watch?v=GgaMMPeO91o&list=UUhwKlOVR041tngjerWxVccw

HelloWorldApp.java
/**
 * The HelloWorldApp class implements an application that simply prints
 * "Hello World!" to standard output.
 */
class HelloWorldApp
{
    public static void main(String[] args)
    {
        /* Print Hello World! */
        System.out.println("Hello World!"); // Display the string.
    }
}
Output
Hello World!

Click the below Image to Enlarge

To Download HelloWorldAppComments Project Click the below link
https://sites.google.com/site/javaee4321/java/HelloWorldAppComments.zip?attredirects=0&d=1

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • No comments:

    Post a Comment