new new[] delete delete[] operators
Posted: Sat Oct 29, 2011 2:37 am
Is is required to implements these operators even if i'm not going to use them?
The Place to Start for Operating System Developers
http://f.osdev.org/
No, you can skip implementing those if you want to. You might want to implement placement new so that you can run the constructors of the objects but that's just a few lines of code.Skirox wrote:Is is required to implements these operators even if i'm not going to use them?