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 trialAnejah Daniels
2,417 PointsWhy 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 }
1 Answer
fhero
1,649 PointsDon'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");} }
Shaun Wetzel
9,085 PointsShaun Wetzel
9,085 Pointsthat worked for me no idea why.