Just curious why the c++ standard library uses all lower case and underscores instead of camelCase or PascalCase naming convention.

Personally, I find the latter much easier to deal with when typing out code,but is there some kind of legitimate reason to use the former?

link|improve this question

1  
I'm assuming it's to keep the conventions the same as C. – GWW Mar 24 '11 at 3:48
Not all lower case. Macros are ALL_CAPS. – dan04 May 6 '11 at 0:23
feedback

2 Answers

up vote 6 down vote accepted

Main reason : To keep compatibility with the existing code, since they have done it with C also.

You have to go through the C++ Coding standards


These links discusses about the naming conventions of C/C++ Standard Library.

link|improve this answer
Useful link. Thanks! Here's another set of guidelines I've used in the past google-styleguide.googlecode.com/svn/trunk/cppguide.xml – Ade Miller Mar 24 '11 at 3:56
That's what I thought, and I do agree with the reasoning...but I think Microsoft would do well to agree as well XD – Nick Mar 24 '11 at 4:56
feedback

Convention. They've done it that way all along, since the C days and before...and didn't see a good reason to break from that convention (not to mention potentially break compatibility with tons of existing code) just to add caps to a bunch of function names.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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