If I have user id variable, what is correct java naming convention for it?
userId or userID
|
If I have user id variable, what is correct java naming convention for it? userId or userID |
|||
|
|
|
I think I read somewhere that the best guideline is to always capitalize only the first letter of an acronym (i.e., if you have a user TTL where TTL is some random acronym in your project, then it's best to write userTtl). This makes sense, since it solves some problems. For example, say you want a user id counter. Readability of userIDCounter is worse than userIdCounter. For a longer acronym, it gets even worse. |
|||||||
|
|
|
||||
|
|
|
It's like this:
(as others have said). So it ends up being treated like an acronym anyway. |
|||
|
|
|
I consider the item described in: Effective Java by Joshua Bloch authoritative in this matter: Adhere to generally accepted naming conventions
So, It should be |
|||
|
|
|
This is a tough decision, even Sun isn't so sure what to do. Look at classes in JRE,
Personally, I prefer to use camel-case always to be consistent. |
|||||
|
|
It mainly depends on your naming convention together with your application (if there are any). For instance, userId is a preferred one with Java convention |
|||
|
|
|
This is quite a handy resource for Java naming conventions http://geosoft.no/development/javastyle.html |
|||
|
|
|
As far as the Java convention is concerned its there in lot of books that the first letter of each word is capatailsed and the all other letters are in small letters, So you have classes like AcademicStudent, and so is the UserId. |
|||
|
|