Sunday 25 November 2012

Static block

Class Abc
{
static
{
System.out.println("hello");
System.exit(0);
}
}