Hacker News new | ask | show | jobs
by thrownaway2424 3681 days ago
The thing to keep in mind is that copying a shared_ptr isn't cheap at all. It's a class with a pointer and atomic reference count inside and the atomic inc/dec takes many cycles.
1 comments

How does this compare to the cost of a closure in other languages? Yeah atomic reference counts are not cheap, but basically that's the point of a shared_ptr.
I'm not sure. I don't program in C++ because I want it to have performance comparable to other languages.