• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

supertype constructor

 
Ranch Hand
Posts: 93
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

It says compile time error - cannot reference Q43.y until supertype constructor has been called
I am not sure I understand the error... Can someone explain? Does it mean super() has to be called or that a base class should exist for this class
 
Ranch Hand
Posts: 45
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
According to jls, one cannot access instance variables in the calls to super constructors as still they are not intialized( follow the object creation thread flow.)
in the given class the no argument constructor is calling the argument constructor, so still the super constructor has not been called yet at the line this(y) hence the compilation error that cannot reference y before call to supertype constructor.
reply
    Bookmark Topic Watch Topic
  • New Topic