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 trialGabrielle Pigatto
2,467 PointsStuck at step 3 method named charge
My code so far is:
public class GoKart { public static final int MAX_BARS = 8; private String mColor; private int mBarsCount;
public GoKart(String color) { mColor = color; mBarCount = 0; }
public void charge(){ mBarsCount = MAX_BARS; }
public String getColor() { return mColor; } }
It is returnning a compiler error and i don't know what it is. heeelp
public class GoKart {
public static final int MAX_BARS = 8;
private String mColor;
private int mBarsCount;
public GoKart(String color) {
mColor = color;
mBarCount = 0;
}
public void charge(){
mBarsCount = MAX_BARS;
}
public String getColor() {
return mColor;
}
}
1 Answer
Kourosh Raeen
23,733 PointsHi Gabrielle - The error is in the constructor where you have mBarCount
instead of mBarsCount
. I suggest just removing that line since it wasn't in the provided code to begin with and also the challenge is not asking for mBarsCount
to be set to zero.