Rockstar Games interview question

Describe an entity management system that avoids dangling pointers.

Interview Answer

Anonymous

22 Jul 2017

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

1