| java Programming Glossary: inner1Odd situation for “cannot reference this before supertype constructor has been called” http://stackoverflow.com/questions/3383460/odd-situation-for-cannot-reference-this-before-supertype-constructor-has-been-c  snippet given is the following public class Outer  A class Inner1 extends Outer B class Inner2 extends Inner1 B anonymous DOES.. Outer  A class Inner1 extends Outer B class Inner2 extends Inner1 B anonymous DOES NOT COMPILE The problem is that due to how.. constructor included explicitly public class Outer class Inner1 extends Outer Inner1 super  class Inner2 extends Inner1 Inner2.. 
 |