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 Overload Methods

What does "passing in a 1" mean? i am absolutely unfamiliar to this therm, how should i call this method?

I do not understand what he means by "passing in a 1", which makes it impossible to complete the task...

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(int lapsRollin) {
    lapsDriven += lapsRollin;
    barCount -= lapsRollin;
  }

  public void drive() {
    lapsDriven++;
    barCount--;
  }
}

1 Answer

Steven Parker
Steven Parker
230,274 Points

When they say "passing in" they mean "supplying as the argument".

So if you are "passing in a 1" then when you invoke the function, you would have a 1 in parentheses following the function name.