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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T09:42:56+00:00 2026-05-25T09:42:56+00:00

If i have a myVector which is a STL vector and execute a loop

  • 0

If i have a myVector which is a STL vector and execute a loop like this:

for(int i=0;i<myVector.size();++i) { ... }

Does the C++ compiler play some trick to call size() only once, or it will be called size()+1 times?

I am little confused, can anyone help?

  • 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-25T09:42:57+00:00Added an answer on May 25, 2026 at 9:42 am

    Logically, myVector.size() will be called each time the loop is iterated – or at least the compiler must produce code as if it’s called each time.

    If the optimizer can determine that the size of the vector will not change in the body of the loop, it could hoist the call to size() outside the loop. Note that usually, vector::size() is an inline that’s just a simple difference between pointers to the end and beginning of the vector (or something similar – maybe a simple load of a member that keeps track of the number of elements).

    So there’s actually probably little reason for concern about what happens for vector::size().

    Note that list::size() could be a different story – the C++03 standard permits it to be linear complexity (though I think this is rare, and the C++0x standard changes list::size() requirements to be constant complexity).

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

Sidebar

Related Questions

Hey, In C++, I have a vector of type: vector<BaseClass*> myVector; In which, I
Suppose I have this (C++ or maybe C) code: vector<int> my_vector; for (int i
I have a std::vector of values for which I know the maximum size, but
I have a class like this class MyClass { int Identifier; int Context; int
Hello I have this question: I would like to have a vector as class
I have a custom c# type like (just an example): public class MyVector {
I have a std::vector<std::string> which would contain numbers and characters (single char). I would
I have a comma separated integers and I want to store them in std::vector<int>
I have a situation where I have a pointer to an STL vector. So
I have this vector. vector<CXFileEntity>* menu;// CXFileEntity is class When i try load an

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.