About Question enthuware.ocajp.i.v7.2.1130 :
Posted: Sun Nov 25, 2012 1:44 pm
I guess it should be: therefore calling super() from a method is NOT validNote that calling super(); means you are trying to call the super class's constructor. But you can't call the super class's constructor (or its own constructor) from a method, therefore calling super() from a method is valid. super() can only be the first statement of a constructor.