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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T05:18:15+00:00 2026-06-04T05:18:15+00:00

I need to write a container template class <T, R> where T is an

  • 0

I need to write a container template class <T, R> where T is an object and R can be either vector<T*> or list<T*>. i need to support common operations like insert(T) size() etc…

I am holding a class member called T data to be the list or the vector. the problem is, how do i write the code so at runtime i know which operation to invoke from std::list or std::vector ?

for example, to get the fist element in the container i would have to invoke data[0] in the vector case and data.front() in lists case. should i just use typeid operator ?

if (typeid(R) ==  typeid(vector<T*>))
  then ...
else if (typeid(R) == typeid(list<T*>))
 then ...

Or is there a better way ?

  • 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-04T05:18:16+00:00Added an answer on June 4, 2026 at 5:18 am

    You can use iterators — they are standard idioms in the STL. Use begin() to get the iterator pointing to the beginning of the collection and end() to get the end (more precisely, the iterator pointing to the element “after” the last in the collection). You can also use push_back() with both list<> and vector<> to add elements to the end of the collection, insert() to add an element to a specific position and erase to delete an element from the collection. Check out the reference (vector, list) for more common functions.

    The idea is that method calls in templates are not checked until the point of instantiation (and sepcifically until the call of template functions), so the above mentioned calls will bind to the exact collection type you specified in the template

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

Sidebar

Related Questions

I need to write XML data to an encrypted file. I can read/write encrypted
I need to write a method which takes any object and returns an equivalent
I need to write a class for enforcing rules about items which may or
In a database that contains many tables, I need to write a SQL script
I need to write a java program which when executed pushes a command into
I need to write OpenGL ES 2-dimensional renderer on iOS. It should draw some
I need to write a program that reads from stdin and only writes non-empty
We need to write a C/C++ code that will check whether the memory allocated
I need to write following query in Linq to SQL but not sure what
I need to write a String in a file on the client side, however

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.