devxlogo

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}

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

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.