Creating the Java Class »
By Ramakrishna on Sep 22, 2008 in define java class | 0 Comments
# Writing the First Program in Java /* This is my First Program To Display the message Author:………. Version:……. Project:……….*/ import java.lang.*; Class First{ // we initialize variables and methods here. public static void main(String args[]) //The Java program is executed by JVM by calling the Main Method. // The JVM starts execution of a [...]
