Rockstar Games Interview Question

Describe an entity management system that avoids dangling pointers.

Interview Answer

Anonymous

Jul 22, 2017

You can use shared pointers. With this, you won't have any problems with pointers pointing to deleted memory.

1