devxlogo

auto_ptr and Derived Objects

auto_ptr and Derived Objects

The auto_ptr<> class template respects polymorphism and destroys derived objects of base pointers properly. In the following program, an auto_ptr is actually bound to a B * pointer, where B is a class derived from A. Still, when auto_ptr’s destructor executes, it calls the correct destructor?the destructor of class B:

 #include  // for auto_ptrusing namespace std;struct A{ virtual ~A() {}};struct B : public A{ virtual ~B() {}};int main(){ A * p; {  p=new B; // pointer to base points to derived object  auto_ptr pa(p); // bind auto_ptr to p }// B's destructor called here}
See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist