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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T11:37:05+00:00 2026-06-06T11:37:05+00:00

I have a lot of deques defined, and when I need to do things

  • 0

I have a lot of deques defined, and when I need to do things like erase or pop all of them, I’ve just had to do it to every deque specifically.
What i thought could make it easier was to put the deques in an array or list of some kind, which I could loop through.

What I want to do is something like this (Basicly just pseudocode):

deque<f32> pos, vel, rot, prop;
deque deques[] = {pos, vel, rot, prop};
for(i=0; i<deques.length; i++) deques[i].pop_back();

(But it doesn’t work)

  • 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-06T11:37:06+00:00Added an answer on June 6, 2026 at 11:37 am

    Here you declare a simple unmanaged array:

    deque deques[] = {pos, vel, rot, prop}; 
    

    …but you forget to declare the full specialised type of its contents, which should be deque<f32> not just a naked deque.

    Now, you try to iterate over your array,

    for(i=0; i<deques.length; i++) deques[i].pop_back(); 
    

    …but simple C-style arrays don’t have methods like length. You seem to be trying to write C#, not C++!

    Try this:

    std::array<std::deque<float>, 4> deques = { pos, vel, rot, prop };
    for(auto i=0; i<deques.size(); i++) deques[i].push_back(1.0f);
    

    etc.

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

Sidebar

Related Questions

I have lot of code in my Tornado app which looks like this: @tornado.web.asynchronous
At the moment, I have lot's of Java which does all kind of nifty
i have lot of pictureboxes named this way: PBr1_1, PBr1_2, ... PBr1_9 I'd like
I have lot of this hyperlink in my page. Some of them are visible
We have lot of code like: IPerson { Eat(); } Persion : IPerson {
I have lot of png sequences that I need to loop through and display
i just started MVC so have lot of confusion. whenever we call any server
I have lot of code in our solution like this: Localization.Current.GetString(abc.def.gih.klm); I want to
I have lot of items on the screen and I need to use the
I have lot of products with custom options, now I have requirement to update

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.