Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

danielmannawarajan
1,381 PointsCan someone help me with task 2 Overloading, please:(
Can someone help me with task 2b, its so confusing. Please:(

Carlos Vallejo
11,821 PointsHi Daniel, Could you post the task in order to help you?

Pranjal Agnihotri
4,187 PointsJust share the challenge in which u r stuck.
1 Answer

Zack Mowrer
Full Stack JavaScript Techdegree Graduate 62,350 PointsAssuming 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.
Passavudh Sabpisal
4,474 PointsPassavudh Sabpisal
4,474 PointsCan you paste the code on to the question please?