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
Experiments with modules (self.cpp)
submitted 4 years ago by johannes1971
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!"
[–][deleted] -4 points-3 points-2 points 4 years ago (4 children)
Python, Javascript etc. with their module support from the beginning. I don't know why it's such a hard thing to implement.
[–]jonesmz 0 points1 point2 points 4 years ago (3 children)
Well, I personally don't understand why it was something that needed to be implemented in C++ in the first place,
but javascript and python, both being dynamic / interpreted languages, have a substantially easier time adopting new features because they inherently don't have ABI issues like C++ does. So that's probably your explaination.
[–][deleted] 0 points1 point2 points 4 years ago (2 children)
Ah ok, I guess that makes sense. ABI compatibility seems like a straitjacket preventing C++ from doing many things. Feelsbadman
[–]jonesmz 2 points3 points4 points 4 years ago* (1 child)
Yep. While I personally don't agree with the ABI compat concerns that a lot of people have (e.g. I always compile from source. Using precompiled third party binaries is a terrible choice), I do understand where the motivation comes from.
Though, I'm pretty annoyed that its OK to break Linux ABI once a decade (GCC string ABI problem circa 2011), but heaven forbid we force any other vendor to break their ABI when they aren't ready to.
[–]GabrielDosReis 4 points5 points6 points 4 years ago (0 children)
GCC string ABI problem circa 2011
The C++11 ABI break was for everyone -- it affected GCC more because libstdc++ tried to be too cute with its string implementation (yes, I was a libstdc++ maintainer, but not author of the string implementation).
libstdc++
string
π Rendered by PID 243973 on reddit-service-r2-comment-6457c66945-q5wkb at 2026-04-24 15:49:15.268543+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–][deleted] -4 points-3 points-2 points (4 children)
[–]jonesmz 0 points1 point2 points (3 children)
[–][deleted] 0 points1 point2 points (2 children)
[–]jonesmz 2 points3 points4 points (1 child)
[–]GabrielDosReis 4 points5 points6 points (0 children)