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

danielmannawarajan
danielmannawarajan
1,381 Points

Can someone help me with task 2 Overloading, please:(

Can someone help me with task 2b, its so confusing. Please:(

Can you paste the code on to the question please?

Carlos Vallejo
Carlos Vallejo
11,821 Points

Hi Daniel, Could you post the task in order to help you?

Pranjal Agnihotri
Pranjal Agnihotri
4,187 Points

Just share the challenge in which u r stuck.

1 Answer

Assuming you are referring to the Overload Methods challenge in the second stage of the Java Objects course, they want you to re-add the original drive method with any parameters while keeping the one with one parameter.

In short, they want you to put this version of the method:

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

alongside this version:

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

Inside the GoKart class. Simple as that.