The last weekend I have received my vers…
The last weekend I have received my version of “Effective C++” 3rd edition by Scott Myers. That book was recommended to me by Jay and Toru. It offers a number of best practices in C++ programming (55 items) so far it’s very informative and the author really addresses each point from all perspectives and explains why things should be the way he says so.
One point, however, I regret not finding THE section I was looking for, the dark side of C++ “pointers”, the author talks a lot about smart pointers as the best way to avoid memory leaks. To be honest I’ve never used them, but my real concern was to learn aspects of allocating memory from the heap, when to do it and what are the best practice, not pointers as a “variable” so to speak.
In general I am satisfied with the book and in fact I need to stop reading and start refactoring some of my code