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

Paul Joiner
Paul Joiner
1,682 Points

Compiler 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!

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 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
Elbie Smith
2,325 Points

Your error is on line 22. The return statement on line 21 should happen after you set your variable.

Paul Joiner
Paul Joiner
1,682 Points

ok, 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:

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; 

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

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

}
Elbie Smith
Elbie Smith
2,325 Points

If you still need help with this, use a while loop in your charge method. like...

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