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

Amit Dhamankar
Amit Dhamankar
4,163 Points

I am not able to understand this exercise

How can we use the charge method when we have both the charge method along with isFullyCharged. I am totally confused. Please help me solve this exercise. Thanks in advance

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() {
    while (
  }

}

1 Answer

Walter Allen
seal-mask
.a{fill-rule:evenodd;}techdegree
Walter Allen
iOS Development with Swift Techdegree Student 16,023 Points

Hey, Amit...

Methods within the class are able to call other methods with in the class. In this case, it's asking you to use the isFullyCharged() method within the charge() method to check to see if the mBarsCount variable is at capacity, and if not, to increment the mBarsCount method.

The code would look something like this:

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

Does that help? I hate to give code in my answers because I think it's better if you figure that part out on your own, but in this case, I thought it might help you see that you can call methods from other methods.