How to print anything before execution of main method in java?

public class DemoStaticBlock
{
static{
System.out.println("Before Main Class Execution.");
}

public static void main(String args[]){
System.out.println("After Main Class Executed.");
}
}

here static block is always execute before execution of main method.
as we all know that static method is use for calling a method or code without creating its instance.

Comments

Popular posts from this blog

Part 1: Introduction to Bigdata

SoundCloud - A Twitter Product....Hows sounds it...

Maths for Machine Learning