S
suresh
No. It means that you don't have to write one yourself. You
still have a destructor; it's just that the compiler generates
the correct one automatically.
or rather as I understood lately, when a shared_ptr is used, instead
of calling delete in the destructor, one calls reset() which will
reset the reference count and when it becomes zero, it will be
automatically deleted. Am I right?
suresh