class Star {
static {
System . out . print ( " Static " ) ;
}
{
System . out . print ( " Init " ) ;
}
Star ( ) {
System . out . print ( " Const " ) ;
}
public static void main (
String args [ ] ) {
System . out . print ( " main " ) ;
}
};
In this method Static and main is printed...
why init is not displayed???
Even if we create construtor of the class Star init is not printed? why is it so?