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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T05:24:36+00:00 2026-05-12T05:24:36+00:00

I am trying to create a vector that contains pointers, each pointer points to

  • 0

I am trying to create a vector that contains pointers, each pointer points to another vector of a type Cell which I have made using a struct.
The for loop below allows me to let the user define how many elements there are in the vector of pointers. Here’s my code:

vector< vector<Cell>* >  vEstore(selection);
for (int t=0; t<selection; t++)
{
    vEstore[t] = new vector<Cell>; 
    vEstore[t]->reserve(1000);
}

This, I think, gives me a vector of pointers to destination vectors of the type Cell.
This compiles but I’m now trying to push_back onto the destination vectors and can’t see how to do it.

Since the destination vector is of the type Cell which is made from a type as follows:

struct Cell
{
    unsigned long long lr1;
    unsigned int cw2;
};

I can’t work out how to push_back onto this destination vector with 2 values?

I was thinking …

binpocket[1]->lr1.push_back(10);
binpocket[1]->cw2.push_back(12);

As I thought this would dereference the pointer at binpocket[1] revealing the destination array values, then address each element in turn.
But it doesn’t compile.

can anyone help
…but this only has one value and doesn’t compile anyway.

  • 1 1 Answer
  • 1 View
  • 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-12T05:24:36+00:00Added an answer on May 12, 2026 at 5:24 am
    Cell cell = { 10, 12 };
    binpocket[1]->push_back(cell);
    

    Alternatively, you can give your struct a constructor.

    struct Cell
    {
        Cell() {}
        Cell(unsigned long long lr1, unsigned int cw2)
            : lr1(lr1), cw2(cw2)
        {
        }
    
        unsigned long long lr1;
        unsigned int cw2;
    };
    

    Then you could do

    binpocket[1]->push_back(Cell(10, 12));
    

    Note that long long is non-standard (yet), but is a generally accepted extension.

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

Sidebar

Ask A Question

Stats

  • Questions 179k
  • Answers 179k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer 1819043176 is 6C6C6568 in hexadecimal, which is stored as the… May 12, 2026 at 3:47 pm
  • Editorial Team
    Editorial Team added an answer The usual way is to store length of each segment… May 12, 2026 at 3:47 pm
  • Editorial Team
    Editorial Team added an answer It sounds like it's possible you're not deploying to a… May 12, 2026 at 3:47 pm

Related Questions

I have a std::vector<uint8_t> that contains strings at specific offsets. Here's a shortened dump:
I am trying to create a c++ ostream for educational reasons. My test will
As most of you may be following my line of questions already know, i'm
What I am trying to do is save a Move objects into a Vector

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.