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

Sahaj Dhillon
Sahaj Dhillon
885 Points

Get Help problem!

By clicking Get Help icon at top of exercise it is always opening the ask a question box how to go to previous dialog box in which they give hints .??

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 drive(){
    lapsDriven += 1;
  }

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

  public boolean isFullyCharged() {
    return MAX_BARS == barCount;
  }
}
Sahaj Dhillon
Sahaj Dhillon
885 Points

Thank you Lauren for replying ,Yes same thing happens to me also but previously on java basic videos I get hints regarding that program ,but never mind I will try my best not to take any help unless I need it !

Ah ok, thanks Sahaj. I don't think I've come across those hints before, that's why. I agree little clues would help sometimes. Happy coding!

1 Answer

I'm not sure what are the "hints" you're referring to. On my computer, when I click on GetHelp, a small window opens up where I can type a question to post on this forum. And when I close that window, I go back to the challenge page I was on.