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 trialPaul Joiner
1,682 PointsCompiler error--but the editor won't show what's wrong.
I'm not able to compile this. For some reason the editor won't even load with error messages. Can anyone see what I'm doing wrong here? Thank you!
public class GoKart {
public static final int MAX_ENERGY_BARS = 8;
private String mColor;
private int mBarsCount;
public GoKart(String color) {
mColor = color;
mBarsCount = 0;
}
public String getColor() {
return mColor;
}
public boolean charge() {
boolean isCharging = true;
if (!isFullyCharged()) {
mBarsCount++;
isCharging = false;
}
return isCharging;
mBarsCount = MAX_ENERGY_BARS;
}
public boolean isBatteryEmpty() {
return mBarsCount == 0;
}
public boolean isFullyCharged() {
return mBarsCount == MAX_ENERGY_BARS;
}
}
2 Answers
Elbie Smith
2,325 PointsYour error is on line 22. The return statement on line 21 should happen after you set your variable.
Elbie Smith
2,325 PointsIf you still need help with this, use a while loop in your charge method. like...
public void charge() {
while (!isFullyCharged){
mBarsCount++;
}
}
Paul Joiner
1,682 PointsPaul Joiner
1,682 Pointsok, I tried to edit my code a bit, but I'm still getting compiler errors. Am I missing something pretty big here? I may need to be referred to a previous unit. Here's my current code: