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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T02:59:16+00:00 2026-05-16T02:59:16+00:00

For any STL container that I’m using, if I declare an iterator (of this

  • 0

For any STL container that I’m using, if I declare an iterator (of this particular container type) using the iterator’s default constructor, what will the iterator be initialised to?

For example, I have:

std::list<void*> address_list;
std::list<void*>::iterator iter;

What will iter be initialised to?

  • 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-16T02:59:17+00:00Added an answer on May 16, 2026 at 2:59 am

    By convention a “NULL iterator” for containers, which is used to indicate no result, compares equal to the result of container.end().

     std::vector<X>::iterator iter = std::find(my_vec.begin(), my_vec.end(), x);
     if (iter == my_vec.end()) {
         //no result found; iter points to "nothing"
     }
    

    However, since a default-constructed container iterator is not associated with any particular container, there is no good value it could take. Therefore it is just an uninitialized variable and the only legal operation to do with it is to assign a valid iterator to it.

     std::vector<X>::iterator iter;  //no particular value
     iter = some_vector.begin();  //iter is now usable
    

    For other kinds of iterators this might not be true. E.g in case of istream_iterator, a default-constructed iterator represents (compares equal to) an istream_iterator which has reached the EOF of an input stream.

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

Sidebar

Related Questions

I'm trying to create a vector (or any STL container, really) that could hold
Can any of STL algorithms/container operations like std::fill , std::transform be executed in parallel
I want to implement a timer queuing system using the C++ STL priority_queue container
I'm using std::make_pair() for this example because pretty much any C++ programmer ought to
Does the std::stack in the C++ STL expose any iterators of the underlying container
I'm using an std::unordered_map<key,value> in my implementation. i will be using any of the
Is there any way to return an STL iterator to a std::map (e.g. std::map<const
I have two STL containers that I want to merge, removing any elements that
As in the title: given an object of type of some STL container (e.g.
Any idea why this code: extern C __declspec(dllexport) void Transform(double x[], double y[], int

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.