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 trial

Java Java Objects (Retired) Harnessing the Power of Objects Incrementing

Okay, so let's use our new isFullyCharged helper method to change our implementation details of the charge method. Let's

i did not understand the quetion

GoKart.java
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;
  }

  public boolean isBatteryEmpty() {
    return mBarsCount == 0;
  }

  public boolean isFullyCharged() {
    return mBarsCount == MAX_ENERGY_BARS;
  }
  while(")

}

2 Answers

Anish, TH wants you to rewrite the charge() method so it uses the isFullyCharged() method instead of just setting mBarsCount to the max number of bars.:

  public void charge() {
    while (!isFullyCharged()) {
      mBarsCount++;
    }
  }

Here mBarsCount is incremented in a while loop as long as isFullyCharged() is not (!) true.

I'm stuck too and tried this, but it did not work. Anyone else have any ideas?

Florian Tรถnjes
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Florian Tรถnjes
Full Stack JavaScript Techdegree Graduate 50,856 Points

Hey Anish,

in this challenge you have a GoKart class that implements the 'charge' method.

The challenge wants you to change the method, so that it does use a while loop which checks if the battery is full by using the "isFullyCharged" method. If it is not (! - is the symbol for not) mBarsCount should be incremented (increased in steps).

  public void charge() {
    // use while(), isFullyCharged() and '!' symbol in this method now.
  }

Kind Regards, Florian