C++ Design Tip : Objects should not point back to an object that owns them
#Tips
https://deque.blog/2017/11/20/c-design-tip-objects-should-not-point-back-to-an-object-that-owns-them/
#Tips
https://deque.blog/2017/11/20/c-design-tip-objects-should-not-point-back-to-an-object-that-owns-them/
Deque
C++ Design Tip: Objects should not point back to an object that owns them
In today’s post, we will be advising against storing back-pointers in objects. This is something that we can find in our code, and which unfortunately leads to bugs, decreased performance, co…