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 trialAustin Alex
1,679 PointsWhat am I doing wrong with the charge() method?
I am trying to only charge the battery when mBarsCount does not equal full bars. When the charge method is called, I want to increment the battery charge until it is at full capacity. I don't see what my code is doing wrong. Please help.
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() {
while(!mBarsCount.isFullyCharged()) {
mBarsCount++;
}
}
public boolean isBatteryEmpty() {
return mBarsCount == 0;
}
public boolean isFullyCharged() {
return mBarsCount == MAX_ENERGY_BARS;
}
}
2 Answers
Francisco Navarro
14,185 PointsHi Austin,
It seems like you are calling isFullyCharged() in the wrong way. The isFullyCharged()'s method belong to GoKart's class, so try to call it with "this" instead of mBarsCount.isFullyCharged():
while(!this.isFullyCharged()){ mBarsCount++; }
Hope that helps
Andy Hammond
5,415 Pointslikewise, you dont even need to type "this" you could simply just do while(!isFullyCharged())
(had to ask my brother on that one, he gave me a hand in explaining why it worked. As I understand,
when you type "this" you are referring to this class. (please correct me if i'm wrong :P)
Austin Alex
1,679 PointsIt seems that both ways work.
Andy Hammond
5,415 Pointsyep! i found that out too, i was surprised! im trying to figure all this out, and why everything works the way it does!
Austin Alex
1,679 PointsAustin Alex
1,679 PointsThank you! This worked!