All Talks

Pointers and Memory

https://cppcon.org/ https://github.com/CppCon/CppCon2020

The prevailing wisdom in Modern C++ is to favor smart pointers and container classes over raw pointers and built-in arrays – there are too many traps and pitfalls that come with using those more-primitive types. However, many C++ programmers can’t avoid using them because they’re still so prevalent in legacy C++ code and C libraries. If you have to use raw pointers and built-in arrays, then you should learn to use them safely and …

You might be interested in: