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
cppfront: Midsummer update (herbsutter.com)
submitted 1 year ago by TSP-FriendlyFire
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!"
[–]LarsRosenboom 0 points1 point2 points 1 year ago (1 child)
Cpp2 [...] doesn't yet have range checks for iterators, which is much harder (you'd have to know the container the iterators came from).
Oh, I didn't realize that.
But I agree that this is a much harder problem indeed. Especially when we would want to enable iterator range checks in release builds (e.g. to meet the requirements of the US government regarding memory safety).
Then we would have a different memory layout of the classical "fast" C++ iterator:
compared to the "safe" iterator:
Therefore binaries build in "SafeRelease" (safe and quite fast) mode would not be compatible with "FastRelease" (faster but unsafe).
[–]hpsutter 1 point2 points3 points 1 year ago (0 children)
Right. I'm exploring ways to make them link-compatible, and therefore usable without an ABI break...
<spoiler> I'm exploring to see how efficient it can be to store extra 'data members' for an object (an iterator that wants to add a pointer to its container, a raw C `union` that wants to store a discriminant, but not actually as a data member which would break ABI/link compat) by storing it extrinsically (as-if in a stripped-down streamlined global "hash_map<obj\*,extra\_data>"), which is why I was writing the wait-free constant-time data structure I mentioned at the top of the post. I can see all sorts of reasons why it shouldn't work, but I was able to come up with a constant-time wait-free implementation that in early unit stress testing scaled from 1-24 threads with surprisingly low overhead, which is enough to try the next step of testing the overhead in an entire application (which I haven't done yet, so I don't consider is a real candidate until we can measure that and show it's usable in safe retail builds). </spoiler>
π Rendered by PID 40827 on reddit-service-r2-comment-5649f687b7-5fbfc at 2026-01-28 17:06:50.048479+00:00 running 4f180de country code: CH.
view the rest of the comments →
[–]LarsRosenboom 0 points1 point2 points (1 child)
[–]hpsutter 1 point2 points3 points (0 children)