Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7889155
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:01:24+00:00 2026-06-03T06:01:24+00:00

I want to inherit from std::map , but as far as I know std::map

  • 0

I want to inherit from std::map, but as far as I know std::map hasn’t any virtual destructor.

Is it therefore possible to call std::map‘s destructor explicitly in my destructor to ensure proper object destruction?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T06:01:26+00:00Added an answer on June 3, 2026 at 6:01 am

    The destructor does get called, even if it’s not virtual, but that’s not the issue.

    You get undefined behavior if you attempt to delete an object of your type through a pointer to a std::map.

    Use composition instead of inheritance, std containers are not meant to be inherited, and you shouldn’t.

    I’m assuming you want to extend the functionality of std::map (say you want to find the minimum value), in which case you have two far better, and legal, options:

    1) As suggested, you can use composition instead:

    template<class K, class V>
    class MyMap
    {
        std::map<K,V> m;
        //wrapper methods
        V getMin();
    };
    

    2) Free functions:

    namespace MapFunctionality
    {
        template<class K, class V>
        V getMin(const std::map<K,V> m);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to generate a choicelist for all specs that inherit from imagekit.specs.ImageSpec .
I have 2 classes both inherit from the same interface. i want sometimes to
When you want to inherit from a class in C++, is it illegal to
I have a base type that I want to inherit from, for all my
I want SuperClass12 to inherit from SuperClass1 and SuperClass2 : def getClass1(): class MyMetaClass1(type):
I want to inherit from a class in a file that lies in a
Standard C++'s std::exception::what() returns a narrow character string. Therefore, if I want to put
Suppose I want to inherit from System.Data.SqlClient.SqlTransaction which is sealed . Supose I want
Possible Duplicate: How to force child same virtual function call its parent virtual function
I'm implementing a custom control that inherits from Control . I want it to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.