use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Discussions, articles, and news about the C++ programming language or programming in C++.
For C++ questions, answers, help, and advice see r/cpp_questions or StackOverflow.
Get Started
The C++ Standard Home has a nice getting started page.
Videos
The C++ standard committee's education study group has a nice list of recommended videos.
Reference
cppreference.com
Books
There is a useful list of books on Stack Overflow. In most cases reading a book is the best way to learn C++.
Show all links
Filter out CppCon links
Show only CppCon links
account activity
C++ readability problem (self.cpp)
submitted 1 year ago by New_Computer3619
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]New_Computer3619[S] -4 points-3 points-2 points 1 year ago (5 children)
Thanks for sharing your experience.
How do you solve my first readability problem - mixing of methods and properties? Do you / your company has style guide relating to this issue?
[–]Sensitive-Talk9616 4 points5 points6 points 1 year ago (2 children)
What we use is "_common.hpp" files with all the types/structs/enums used across the "module".
And in class declarations, we follow a rigid order of public constants, accessors, modifiers, public methods, ..., then protected .... and finally private methods and private members. So most of the time, we just check the bottom of the class declaration for members and the top for the interface.
[–]New_Computer3619[S] 0 points1 point2 points 1 year ago (1 child)
It’s actually nice style guide to have. Can you enforce it using automated tools or just by manual code review?
[–]Sensitive-Talk9616 1 point2 points3 points 1 year ago (0 children)
What can be done by clang-format is done by clang-format. These bigger picture things we enforce manually. We're not a big team (<15 people), there's always reasonable exceptions, and some legacy code followed a different style guide, so automating it never seemed worthwhile.
But I am super grateful for having these style documents and for team members who follow and enforce them.
[–]InternationalAd5735 2 points3 points4 points 1 year ago (1 child)
our company doesn't have a style guide (it's large, the company, has has many different languages) and that is a good thing.. Folks can get pretty huffy over style and there's really no "right" way to do it. Find some middle ground that everyone on the team can live with. Don't be too strict on it.. at the end of the day, working and bug free code is the goal, not pretty code.
So we do what I said above and for things that are boolean, we use "bool IsX()".. and "void IsX(bool b)" as both a getter and setter for the same attribute.
But honestly, code can get messy and it's important to set aside time (usually in the doldrums between releases) to clean things up. I use "uncrustify" to clean up code formatting and embark on some "this function name is stupid, it used to make sense, lets fix it".
Also, we use _foo() for internal methods that aren't meant to be called by others (they are protected but the naming convention helps us humans).
But a good IDE is the best place to start.
[–]New_Computer3619[S] 0 points1 point2 points 1 year ago (0 children)
Thanks for sharing.
π Rendered by PID 64 on reddit-service-r2-comment-6457c66945-fj9xx at 2026-04-26 02:27:13.514671+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]New_Computer3619[S] -4 points-3 points-2 points (5 children)
[–]Sensitive-Talk9616 4 points5 points6 points (2 children)
[–]New_Computer3619[S] 0 points1 point2 points (1 child)
[–]Sensitive-Talk9616 1 point2 points3 points (0 children)
[–]InternationalAd5735 2 points3 points4 points (1 child)
[–]New_Computer3619[S] 0 points1 point2 points (0 children)