The instance initialization method <init> also has to be present in every class file. This method has the descriptor ()V and is fully described in the methods[] table of the class file.
The entry in the methods[] table contains the following information:
aload_0 load the reference to this class on the stack;invokespecial <index> invoke java.lang.Object.<init>()V;
return.
What the <init> method of this class does is invoke the <init> method of its superclass, in this case java.lang.Object. The class java.lang.Object will be the superclass of all classes containing a compiled Pascal program.