Skip to main content

JAVA: First program

Lets create a simple program.

JAVA PROGRAM:
class myfirstprogram{
  public static void main(String args[]){
  System.out.println("Hello World");
  }
}

OUTPUT: Hello World

Explanation:
class keyword Javaprogram name of the classopening of the class
  public access key static used for calling without an object void doesn't return a value main name of the method (String args[]) argument to the methodopening of main
  System class in java.lang package.out field.println object("Hello World");
  } closing of main
}closing of class

When we compile the program, the compiler compiles and creates a .class file.
When we run the program, Java Virtual Machine(JVM) loads the .class file.
Here, Java converts all the contents of source file to byte code thats the reason we get a .class file after the compilation of the program.

PREVIOUS                                                                      NEXT

Comments

Popular posts from this blog

I Wish for a WISH

Wish I can wish for a chance A chance to win A chance to be better   A chance to be the best daughter But I don’t want to regret a thing Am happy the way I think The only thing that I wish Let me be me please. I don’t want to hurt anyone I don’t want to lie I just want to see everyone happy The only thing that I wish Let me be me please.                                                                                                          ...

JAVA: variables

What is a variable ? A variable  is like a container that holds a value. syntax: <data type> <variable name> = <value> eg: int i=10; where i is an integer that holds a value of 10. Scope of variable: Local Variable : its local which means its inside the method Instance Variable : its inside the class but outside the method. Class/Static Variable : its declared as static INSTANCE VARIABLE: declared inside the class but outside the method. visible to all methods. STATIC VARIABLE: declared with the static keyword in a class but outside the method. it is stored in static memory. LOCAL VARIABLE: declared inside the method. are accessible only during the method execution. Confused? let me show you an example with a program. public class scope{ int a=10; //<----instance variable static int c=20; //<----static variable public static void main(String args[]){ int x=30; //<----local var...

Fantasy Dream Poem

How nice it would be, If we can dance over the rainbow, Sleep over the clouds, Shine with the stars, And bless others with the raindrops. I know it’s a fantasy dream, But nothing is impossible!