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 trialHarsh Jain
Front End Web Development Techdegree Student 1,783 PointsNow create a method named charge that sets the new barCount field to the maximum amount of bars available for each GoKar
Now create a method named charge that sets the new barCount field to the maximum amount of bars available for each GoKart.
class GoKart {
public static final int MAX_BARS = 8;
private String color;
private int barCount;
public GoKart(String color) {
this.color = color;
}
public String getColor() {
return color};
public void Charge(){
barCount = MAX_BARS;
}
}
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHi Harsh Jain
You're on the right track and doing great. There are just a couple of small things out of place here.
First, after the return
statement in the getColor
method, the semicolon and the closing brace are mixed up. The semicolon needs to end the statement and then the brace closes the method. This is much easier to remember if you always put the closing brace on its own line.
Second, the name for the method you are adding should not be capitalized. Java methods are named using lowerCase camelCase naming conventions.
So, you got it right for the most part, just a couple small corrections and you're good to go. Have a look at the code below and compare to yours to better illustrate what I mean above.
public String getColor() {
return color;
}
public void charge(){
barCount = MAX_BARS;
}
}
Nice work! :)