I have a class like the following:
class node
{
public:
node* parent;
std::list<node*> children;
};
Should I use a smart pointer instead of raw pointers? Why? If yes, what kind of smart pointer?
|
I have a class like the following:
Should I use a smart pointer instead of raw pointers? Why? If yes, what kind of smart pointer? |
|||
|
|
|
Always use a smart pointer wherever you own resources (memory, files etc). Owning them manually is extremely error prone and violates many good practices, like DRY. Which one to use depends on what ownership semantics you need. As children do not own their parents, a raw parent pointer is fine. However, if the parents own their children, It's also notable that what on earth, a linked list of pointers? That makes no sense. Why not a linked list of values? |
|||||||||||||||||||||
|
|
It is always a good idea to use smart pointers, but beware of loops of references.
That's why there is the |
|||||||||||||||||||||
|
|
Absolutely not. The usual smart pointers don't work with graph-like structures, and should be avoided. In this case, you have a tree, and there's no problem handling all of the deletions (and allocations) from the tree object itself. |
|||||||||||||||||||||
|