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 Harnessing the Power of Objects Increment and Decrement

Shiva Lowy
seal-mask
.a{fill-rule:evenodd;}techdegree
Shiva Lowy
Full Stack JavaScript Techdegree Student 3,240 Points

I am trying to increment the code but it keeps canceling out the code ( private int lapsDriven;)

I feel really dumb right now. I have been trying to fix this code for hours but so far I have nothing. Any advice would be great.

GoKart.java
class GoKart {
  public static final int MAX_BARS = 8;
  private String color;
  private int barCount;
  private int lapsDriven;


  public GoKart(String color) {
    this.color = color;
  }

  public String getColor() {
    return color;
  }

  public void charge() {
    barCount = MAX_BARS;
  }

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

  public boolean isFullyCharged() {
    return MAX_BARS == barCount;
  }
   public void drive() {
    lapsDriven++;
}

2 Answers

K Cleveland
K Cleveland
21,839 Points

Hey! Do you look at the "Preview" at all? If you click on "Preview" you'll be able to run the code and get a bunch of useful information about your program (if there are errors). When I run your code, I get an error. It includes this info:

"java.lang.IllegalArgumentException: ParseException: com.github.javaparser.ParseException: Encountered "<EOF>" at line 29, column 2. " Basically, it's telling you that you have an EOF(End of File) error on line 29.

class GoKart {
   public void drive() {
    lapsDriven++;
}

I erased everything except that drive function and the GoKart class declaration. I'm sure you can find the error looking at this -- if you haven't already figured it out before now. Good luck! :)

K Cleveland
K Cleveland
21,839 Points

Yay! So awesome. Keep it up. :)