java Programming Glossary: inner2
Odd 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 public class Outer A class Inner1 extends Outer B class Inner2 extends Inner1 B anonymous DOES NOT COMPILE The problem is that.. class Outer class Inner1 extends Outer Inner1 super class Inner2 extends Inner1 Inner2 super STILL DOES NOT COMPILE The problem.. extends Outer Inner1 super class Inner2 extends Inner1 Inner2 super STILL DOES NOT COMPILE The problem is that Inner2 's..
|