In C++ Good reasons for NOT using symmetrical memory management (i.e. new and delete)
- by Jim G
I try to learn C++ and programming in general. Currently I am studying
open source with help of UML. Learning is my hobby and great one too.
My understanding of memory allocation in C++ is that it should be
symmetrical. A class is responsible for its resources. If memory is
allocated using new it should be returned using delete in the same …