Different languages have different standards for identifier casing. Most discussion I see about this subject revolves around a specific language, and is loaded with personal opinions. And these strong opinions all stem from the decision of one person or a group of people who created the language.

I'd love to see a graph showing just how much more readable words_per_minute is than wordsperminute. Obviously I'm most interested in the more controversial cases such as wordsPerMinute. I suspect the most readable ones take the most time to type, and vice versa, but of course I can't be sure of this on my own.

Have there been any language-agnostic studies done comparing readability of different capitalization schemes? Stats on speed of typing would also be welcome.

link|improve this question

72% accept rate
1  
I suspect this will actually be somewhat language-dependent. For example, when writing OO-style with special syntax for receiver (i.e. the traditional foo.bar() style), I find that _ and . get somewhat mixed up, so I prefer camelCase or PascalCase for readability (as . in long call chains stands out really well that way). On the other hand, when all I have is plain function calls, then underscore_separated seems to be better. Of course this is subjective experience, but it may well have factual underpinnings. – Pavel Minaev Dec 8 '09 at 20:52
I have the same impression as Pavel. When I write some C, even after months of C# with underscore allergy, I always go back to lowercase_with_underscores, because it just... feels better. – R. Martinho Fernandes Dec 8 '09 at 20:59
feedback

3 Answers

Your question reminds me of this blog post. Title: Readability, an experimental view

link|improve this answer
feedback

I recall there was a paper on that topic at ICPC 2009 in Vancouver, but I was not convinced by their evaluation approach.

The PDF can be found here: http://www.cs.loyola.edu/~binkley/papers/icpc09-clouds.pdf

They showed a screen with moving words and folks at to click as fast as possible on given sentences (once using underscores and once camel-case). This is (sorry to say) a pointless evaluation approach for several reasons, among them that source code does not move, and that it would be much more interesting to learn about the readability in the context of source code with all its operators and other special characters!

PS: interestingly enough there are some languages that use case as part of their syntax! Haskell, Ruby, and Self are among those I know of.

link|improve this answer
feedback

I've seen a few citations, but tracking down real studies seems to be quite difficult. I've seen only one or two available online that seem to have any real supporting evidence.

link|improve this answer
I'm sorry if your English is correct but I'm struggling to understand it :(. Do you mean "they seem to have some supporting evidence" or "they don't seem to have any supporting evidence". – R. Martinho Fernandes Dec 8 '09 at 21:10
Those two do seem to have some supporting evidence. Most do not. – Jerry Coffin Dec 8 '09 at 21:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.