Thursday, 2 October 2014

StaticBlock Program


class StaticBlock
{
 /*public static void main (String[] args)
 {
  System.out.println("Main Method is executed");
 }*/
 static
 {
  System.out.println("static method is executed");
  System.exit(0);
 }


Java Development Kit (JDK) and Java Runtime Environment (JRE)

                  Java Development Kit (JDK) and Java Runtime Environment (JRE)  To download and install the Java Development Kit (  JDK ) ...