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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:15:14+00:00 2026-06-11T23:15:14+00:00

I have a list of pointers to objects. std::list<X*> xList; All I need is

  • 0

I have a list of pointers to objects.

 std::list<X*> xList;

All I need is the size of the list so my method, populates this list and calls size() on it and then returns the size.

NOTE: I know this is not the best solution, but I am using an API that provides a list with dynamically allocated objects and this is the only way I can do it.

Now valgrind is saying that there’s memory leaks here. I am assuming that this is because I never delete the objects that are in the list.

I thought I’ll do this:

std::list<X*>::iterator iter;
for (iter = xList.begin(); iter != xList.end(); ++iter)
{
    delete (*iter);
}

but is this the best solution to 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-06-11T23:15:15+00:00Added an answer on June 11, 2026 at 11:15 pm

    No, the best solution would be to have a std::list<std::unique_ptr<X>> instead. Now the objects will delete themselves as and when it’s appropriate, and you do not have to concern yourself with it. When the std::list is destroyed, the X objects which are owned by it are also destroyed.

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

Sidebar

Related Questions

I have a list of pointers that reference time objects that need a turn
Say I have two containers storing pointers to the same objects: std::list<Foo*> fooList; std::vector<Foo*>
I have a 3D vector defined like this... std::vector<std::vector<std::list<Object*> > > m_objectTiles; I have
I have a class with a list of pointers to objects of that same
Possible Duplicate: Does std::list::remove method call destructor of each removed element? I have a
I have a list of pointers to objects. These objects have nothing in common
I have a vector of pointers to objects. I need to remove an element
I have a list of pointers to SomeClass objects in a Main class. Whilst
I have a design where I have a std::list of base pointers that I'd
Say I have this: Object *myObject; std::vector<Object> objects(99); .... myObject = &objects[4]; Would it

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.