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

Android Build a Simple Android App (retired 2014) Getting Started with Android Introduction to Java Variables

Why is String in Caps? Why cannot I write it as string?

in String myName = "Ben" why is "String" in caps? why not "string"

Also why is "Name" in myName caps?

1 Answer

Dan Mirda
Dan Mirda
3,992 Points

The reason the data type for strings in java are capitalized is because strings are reference types (in other words strings are objects) and in java it is a convention that classes start with a capital letter. (Classes are like the general blueprint for an object).

The reason "Name" in myName is capitalized is to simply make the variable name easier to read. It's a convention called "camel casing". You can read more about it here: https://en.wikipedia.org/wiki/CamelCase