+ 1
Dynamic memory
Ok, so this is where it gets hard, so.. I have a question. I thought of an example about new and delete about the heap. Someone tell me if itās correct. I have 3 classes, bow, sword, and gun. I choose one, should I use delete on the others because I donāt need to use it?
1 Answer
+ 1
We delete objects not classes.š
if you make objects of these classes dynamically , use them and no longer need then you may delete them to free the resources.
Always remember to free allocated memory before the program exits to avoid memory leakes.