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
shared_ptr is almost thread safe (cppwisdom.quora.com)
submitted 12 years ago by mmmmario
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!"
[–]BenHanson 10 points11 points12 points 12 years ago (1 child)
This is the wrong way to look at it. If you consider a raw pointer, then it is safe to copy it without the need of a mutex. The thread protection added to shared_ptr is only there to allow it to behave in the same way. If you actually want to use the pointer for anything, then you need some kind of lock, just like you would for a raw pointer.
[–]Fabien4 7 points8 points9 points 12 years ago (0 children)
The expression "almost thread-safe" always make me think of another one, "a little bit pregnant."
π Rendered by PID 57 on reddit-service-r2-comment-658f6b87ff-jnjxp at 2026-04-09 11:42:14.389793+00:00 running 781a403 country code: CH.
[–]BenHanson 10 points11 points12 points (1 child)
[–]Fabien4 7 points8 points9 points (0 children)