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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T10:17:16+00:00 2026-05-30T10:17:16+00:00

I want to create a dynamic queue (using the keyword new ) with an

  • 0

I want to create a dynamic queue (using the keyword new) with an underlying data structure of list in c++ but I cannot figure out the syntax for it. What I have so far is:

queue<int, list<int>> myQueue = new queue<int, 

but I cannot figure out what to finish this line with. Can someone help me? 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-30T10:17:17+00:00Added an answer on May 30, 2026 at 10:17 am

    The new instruction returns a pointer, so you don’t finish that line at all. You need the variable type to be a pointer if you insist on using new. And the type on the right of new will be the same type as the pointer type of the variable you’re initializing.

    queue<int, list<int> >* myQueue = new queue<int, list<int> >;
    

    In general, to dynamically allocate any type X, you just write new X. Perhaps you were a little confused because of how complicated the full name of your type is (commas, angle brackets, multiple tokens, etc.). You can simplify it with a typedef to give the name a single-token name:

    typedef queue<int, list<int> > int_list_queue;
    

    Then you can write this:

    int_list_queue* myQueue = new int_list_queue;
    

    If you don’t really need a pointer, then the declaration is simpler:

    queue<int, list<int> > myQueue;
    // or
    int_list_queue myQueue;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create dynamic XML hieararchy but still couldn't be successful about it.I
I want to create a dynamic (fetching data from the database) XML sitemap which
I have some data and want to create some dynamic charts. I have looked
in my application i want to create dynamic datalist i created but it is
I have a list which contains dynamic data. i.e list[0].id=0; list[1].id=1; list[2].id=2; I want
i want to create a dynamic generated form using javascript, everything works fine, until
I have an .NET 4.0 application using Caliburn.Micro. I want to create a dynamic
I want to create a dynamic 2d array by function but it seems that
Let's say I want to create a dynamic library dynamic.so , but my code
I want to create dynamic lambda expressions so that I can filter a list

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.