Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Inheritance in Java Inheritance in Java Abstracting Abstract Classes

Anejah Daniels
Anejah Daniels
2,417 Points

Why am I receiving cannot refer to instance field when explicitly invoking a constructor after changing Dog constructor?

class Dog extends Animal { Dog() { super(sound: "bark"); //this line receives the error }

Shaun Wetzel
Shaun Wetzel
9,085 Points
class Dog extends Animal { 
  Dog() { super(sound: "bark"); //this line receives the error 
}
// I removed sound:  
super(sound: "bark"); // to super("bark");

that worked for me no idea why.

1 Answer

Don't type "sound:" when you call the superclass. It's just a feature IntelliJ offers to show up the params which you're trying to set. It should look like this:

class Dog extends Animal { public Dog() {super("bark");} }