...

/

Cyclic References

Cyclic References

In this lesson, we'll examine how the use of shared pointers can create a reference cycle and why this could be harmful.

We get cyclic references of std::shared_ptr if they refer to each other.

The issue #

If we have a ...