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 trialAmir Tamim
8,597 PointsWhat will go in the 'drive' method?
Will the drive method at the very bottom have to have a parameter? The task is asking me to set its int value to 1 (default).
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 MAX_BARS ) {
lapsDriven+=MAX_BARS;
barCount-=MAX_BARS;
}
public void drive(){
lapsDriven++;
barCount--;
}
}
Amir Tamim
8,597 PointsSORRY!!! THIS IS THE ACTUAL QUESTION:
Of course, another user of the code just wrote and asked "Where'd that drive method go! I loved that method, can you put it back please?" Sigh...Well thanks to method overloading we can pretty easily bring the method back
Create a new method named drive that accepts no arguments. It should call the newer drive method passing in a 1 for the default.
2 Answers
Timothy Hilley
2,292 Pointscall the method inside the method public int drive() { drive(1);
Michelle Buckby
35,617 PointsI fiddled with it , I got this new method to pass
public int drive(int lapsDriven) {
barCount -= lapsDriven;
barCount += lapsDriven;
}
Amir Tamim
8,597 PointsAmir Tamim
8,597 PointsFull Question:
Some users of our GoKart class wrote and asked that our drive method accept a parameter to specify how many laps to go, instead of just one. It happens, well hey at least you can practice your addition and subtraction shortcuts.
Modify the drive method to define a parameter of how many laps should be driven. Update the method body to handle the new parameter.