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 Meet Objects Methods

Aung Maw
Aung Maw
643 Points

getCharacterName or getcharacterName?

Why is getCharacterName and not getcharacterName? In the code the characterName is written in camel case but why was it changed when we are using it in getCharacterName? Is that a rule for methods starting with "get"?

1 Answer

Steven Parker
Steven Parker
229,785 Points

It's not exactly a "rule", but the definition of what "camel case" is. Identifiers using camel case start with lower case and then make the first letter of each joined word upper case.

In "characterName", "character" is the first word so it's lower case. But in "getCharacterName", "Character" is the second word so the first letter is capitalized. There's nothing special about "get" except that it's now the first word. So both of these identifiers adhere to the definition of "camel case".

Aung Maw
Aung Maw
643 Points

Thank you very much for your explanation. I get it now