Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I'm not familiar with closures from other languages. What about capturing a shared_ptr by value?


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.


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.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: