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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T22:18:42+00:00 2026-05-31T22:18:42+00:00

I have a vector of Foo*. What I put inside is always Foo*, there

  • 0

I have a vector of Foo*. What I put inside is always Foo*, there is no polymorphism.

I use a vector of pointers because I tried a list and it kept crashing. I need to be able to use the pointers in other places so a regular vector of Foo would not work.

ex: b.add(&myRegularVec[6]); //when I add more this pointer wont be valid.

The problem is that I would need the reserve capability of vector. Right now, I have a function like this:

void addRange(int quantity)
{
   for (int i = 0; i < quantity; ++i)
        {
            Foo* obj = new Foo(i);
             m_theVector.push_back(obj);
             b.add(obj);
        }
}

Unfortunately, this calls new a whole lot, and the profiler says it is the bottleneck.

I can not invalidate pointers ex: to grow I would need to redo new[].

What could I do to avoid so many calls to new and make it faster?

Thanks

  • 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-31T22:18:43+00:00Added an answer on May 31, 2026 at 10:18 pm

    You could use a deque<Foo> instead of a vector<Foo*>, since a deque won’t invalidate the pointers as it grows the container.

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

Sidebar

Related Questions

I currently have a vector of a class Foo and another vector of pointers
I have the following code: void foo() { vector<double> v(100,1); // line 1 //
I have a class (foo) that contains a vector. If i try iterating over
If I have the following code, Foo *f = new Foo(); vector<Foo*> vect; vect.push_back(f);
When using the std::for_each, class A; vector<A*> VectorOfAPointers; std::for_each(VectorOfAPointers.begin(), VectorOfAPointers.end(), std::mem_fun(&A::foo)); If we have
Let's say I have a class FOO. I want to have a std::vector of
I have a struct that contains pointers: struct foo { char* f; int* d;
My application problem is the following - I have a large structure foo. Because
I have a function foo() in dll A.dll, whose definition is as follows vector<CustomObject>
I have a vector with some (among other classobjects) multiple added objects class Foo

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.