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 trialEli Plopper
4,261 PointsI'm getting an error that the mBarsCount = 0 is an unreachable statement
From looking online, it seems it may have to do with the preceding return statement, but I'm fairly certain that's how we did it in the exercise earlier.
public class GoKart {
public static final int MAX_ENERGY = 8;
private String mColorName = "red";
private int mBarsCount;
public GoKart(String colorName) {
mColorName = colorName;
}
public String getColorName() {
return mColorName;
mBarsCount = 0;
}
public void load() {
mBarsCount = MAX_ENERGY;
}
}
1 Answer
Jonathan Newsome
2,773 PointsMine is set up just slightly different then yours, but from what I'm seeing, the only difference is my placement of "mBarsCount = 0; ". I placed it in the "GoKart" constructor section... hope this helps.
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 void charge() { mBarsCount = MAX_ENERGY_BARS; }
Eli Plopper
4,261 PointsEli Plopper
4,261 PointsThanks Jonathan (Sorry for the delay), but you were on the money!