I made a simple class to learn how to read Java byte code. What does the line
Stack=1, Locals=1, Args_size=1
mean in the folloiwng code?
It means you have one argument (the object to be initialised), one local variable (the object to be initialised) and at most one object on the stack (the object to be intialised)