Viewing code of ObjCreator
// ------ ObjCreator.java --------------
//--- Programmed By Rajesh -----

class Obj {
static int count;
Obj(){
++ count;
}
}
class ObjCreator{
public static void main(String args[]){

for(int i=0; i<5; i++){
Obj O=new Obj();
}
System.out.println("count="+ Obj.count);
}
}