I understand the reason to camel case variable names, but I've always wondered why you would camel case a method name? why is it toString() and not ToString()? What purpose does it serve?
|
|
|||||||||||
|
|
|
It's just a convention. Like all conventions they only serve to, in the minds of their creators, make code easier to read and maintain. |
||||||
|
|
|
Because to be consistent you'd have to capitalize the first letter of every method name, and then you have to hit the Shift key that many more times in a day. |
||
|
|
|
I don't think there is any reason, these are just conventions and everyone might have his own. |
||
|
|
|
|
If you want a function
that takes less effort (one less SHIFT keypress) than
However, if you're writing to a file, you need to distinguish the words. Hence
is marginally more efficient (and still consistent with the first example) |
||||||
|
|
|
Usually you tend to follow the one that your framework uses. So Java developers tend to use lowercase to start, and .NET developers tend to use uppercase to start. |
||
|
|
|
|
Because that's what the original designers of Java liked. |
||
|
|
A lot of conventions say you capitalize the first letter of types (classes, structs, enums, etc.), and use lowercase otherwise (functions, members, etc.). If you follow that convention, you can then tell just by looking that |
|||
|
|
|
|
If you haven't already read the wikipedia page, it contains everything you could ever possibly want to know on camel case, including its history.
And
C programmers lazy? I doubt that very much. |
||
|
|
|
We use lower-case on the first letter to save a little ink in our printouts. |
||
|
|
