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 6794113
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:10:58+00:00 2026-05-26T18:10:58+00:00

I want to store multiple class types derived from the same base class in

  • 0

I want to store multiple class types derived from the same base class in a single stl list.

If I use

list<BaseClass> L;

then my code compiles fine when I add any derived classes. However, it looks like my derived classes are automatically being casted down to the base type before being stored. Obviously I want to store the unique members of the derived types as well. How can I do this?

  • 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-05-26T18:10:58+00:00Added an answer on May 26, 2026 at 6:10 pm

    You have to use

    list<BaseClass *> L;
    

    But with this, you will have problems with exception safety (Where do you destroy the object when the list goes out of scope? What if some exception is thrown before?). So maybe this:

    #include <list>
    #include <tr1/memory>
    
    std::list<std::tr1::shared_ptr<BaseClass> > L;
    

    would be better. TR1 basic info can be found e.g. on wikipedia, its documentation
    under the boost docs.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to use Google spreadsheets to store data online so multiple people can
I have a model where multiple classes have a list of value types: class
How can I store multiple different windows/dialogs in a single GtkBuilder file and then
I want to store a large result set from database in memory. Every record
I want to create an environment class that is accessible from all of my
Basically, I have multiple URL's stored in a MySQL table. I want to pull
I want to store the current URL in a session variable to reference the
I want to store a large number of sound files in a database, but
I want to store the data returned by $_SERVER[REMOTE_ADDR] in PHP into a DB
I want to store a a c# DateTimeOffset value in a SQL Server 2005

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.