Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Defacto standard C++11 coding style? [closed]

Tags:

c++

Is there a defacto standard coding style for C++11? I'm starting to work on a small project and i'm very used to the C# standard: class names, namespaces, methods and properties with PascalCasing. Does C++ use camelCase instead?

like image 227
vinnylinux Avatar asked May 24 '26 09:05

vinnylinux


1 Answers

The only C++ style I know of that it not entirely dependent on the dev culture working on the project is consistency. Whatever you do, do it consistently.

like image 200
Jonathan Henson Avatar answered May 25 '26 22:05

Jonathan Henson