Suppose for the following code , i'm wondering if that "delete b" is necessary here ? Will my operating system automatically clear that area of memory allocated ?
class A
{
B *b;
A()
{ b = new B(); }
~A()
{ delete b; }
};
Many thanks.
Aalso needs a copy-constructor and assignment-operator. – GManNickG Jun 28 '11 at 6:56