While trying to cleanup an application's API, I found myself scratching my head...
What should I call the variable for a user's name "username", or "userName"?
|
1
|
While trying to cleanup an application's API, I found myself scratching my head... What should I call the variable for a user's name "username", or "userName"?
|
||||||||||||||||||
|
|
|
I vote for "username" (one word). "User name" (as two words) could easily mean "The user's real world name", whereas "username" (one word) has a specific meaning in many contexts (an operating system username, for instance). My name is Richie Hindle, but my username is |
||||||||||
|
|
|
FxCop, IIRC, will tell you to call it UserName or userName (depending on context) by default. So that could be your deciding factor. |
||
|
|
|
|
I'll vote user_name since no one has voted for it yet. :) |
||||||||
|
|
|
I generally have always used the term in regards to a user login as "Username" (as a variable - "username"). However, if I'm talking about a user's name, then it's "userName". I think the general convention is to use "username" as one word. |
||
|
|
|
|
'username' should be the name they log in with. 'userName' should be their actual name. My username is 'akway' here, while my name is 'Austin Way', for example. Important Edit: You should not have username and userName anywhere near each other. |
||
|
|
|
|
It depends... userName - for Windows/Java fanatics. user_name - for C/UNIX/Linux fans. user-name - for some old languages and database programmers (Progress, Cobol, ...). username - for all others. :) |
||||||||
|
|
|
Use The distinction between this identifier and the user's real life details should not rest on the capitalization of a single letter. Those variables can be stored in a
|
|||
|
|
|
|
As a lazy typist, I vote "username" |
||||||||||||
|
|
|
I always use userName |
||||||||
|
|
|
As two words are combined, "user" and "name", for me it is "userName". Also I always use "userName" because FxCop tells me to. |
||
|
|
|
|
I personally prefer loginName (or, perhaps, userID, although some people might interpret this to be a number) because of the confusion over what a "username" might be. |
||
|
|
|
|
I've always found camel-casing a distraction. I think it is over hyped. What I find really useful is to structure code, such that general boundaries around flow conditions are more visible (eg. all LHS and RHS of an assignment align, contents of if block are of mostly same length lines, etc..) If all other variables are camel-cased, use it for userName as well. |
||||||||
|