Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am a bit confused about this both of these look same to me. Although it may happen that capacity and size may differ on different compilers. how it may differ. Its also said that if we are out of memory the capacity changes.

All these things are bit unclear to me.

Can somebody give an explanation.(if possible with and example or if I can do any test on any program to understand it)

share|improve this question
Also check out this answer stackoverflow.com/questions/2787397/…. The language there is Java, but the concept is the same. – rid Jun 9 '11 at 17:39

5 Answers

up vote 10 down vote accepted

Size is not allowed to differ between multiple compilers. The size of a vector is the number of elements that it contains, which is directly controlled by how many elements you put into the vector.

Capacity is the amount of space that the vector is currently using. Under the hood, a vector just uses an array. The capacity of the vector is the size of that array. This is always equal to or larger than the size. The difference between them is the number of elements that you can add to the vector before the array under the hood needs to be reallocated.

You should almost never care about the capacity. It exists to let people with very specific performance and memory constraints do exactly what they want.

share|improve this answer
+1 clear to understand for me and also extra imp. info-->"You should almost never care about the capacity. It exists to let people with very specific performance and memory constraints do exactly what they want." Thanks – munish Jun 9 '11 at 17:54
2  
Disagree about not caring about capacity. If you know you have a minimum 200 items to be stored in your vector, you'd be crazy not to tell it that whilst constructing. – Kent Boogaart Jun 9 '11 at 18:00
Crazy? I don't necessarily think so. I just ran a few tests, inserting 200 ints with and without reserving space, and I needed over 100,000 repetitions before reserving space showed a significant performance improvement. Granted, the performance was about twice as good when space was reserved, but unless you're doing this in a tight loop and this is your performance bottleneck, I don't really think it's crazy to not care very much about a couple of microseconds. – John Calsbeek Jun 9 '11 at 18:36
1  
@John: so even with the knowledge that a re-allocation would be likely you'd still not pass on a single known number to the constructor in order to prevent said re-allocation? I stand by my "crazy". Even with ints on a modern machine (best case scenario test) I'd do it to make the intentions of the code clearer, never mind larger structs on an embedded system. – Kent Boogaart Jun 9 '11 at 19:25
1  
@Don: Indeed. But the total number of item copies is O(N). – Oli Charlesworth Jun 9 '11 at 23:38
show 2 more comments

Size: the number of items currently in the vector

Capacity: how many items can be fit in the vector before it is "full". Once full, adding new items will result in a new, larger block of memory being allocated and the existing items being copied to it

share|improve this answer
1  
I'd say not allocate but re-allocate. Because vector guarantees that data is continuously laid out in memory, it cannot use more than one memory blocks returned by operator new. So when the limit is hit, vector will allocate a new chunk of memory and copy existing data to that memory, then delete the previously allocated block. Or, if it is smart enough, it will use realloc function to be a bit more optimal. – Vlad Lazarenko Jun 9 '11 at 17:41
@Vlad: I'm assuming you commented before seeing my last edit? – Kent Boogaart Jun 9 '11 at 17:58
That's right. – Vlad Lazarenko Jun 9 '11 at 18:24

The size is the number of elements in the vector. The capacity is the maximum number of elements the vector can currently hold.

share|improve this answer

Let's say you have a bucket. At most, this bucket can hold 5 gallons of water, so its capacity is 5 gallons. It may have any amount of water between 0 and 5, inclusive. The amount of water currently in the bucket is, in vector terms, its size. So if this bucket is half filled, it has a size of 2.5 gallons.

If you try to add more water to a bucket and it would overflow, you need to find a bigger bucket. So you get a bucket with a larger capacity and dump the old bucket's contents into the new one, then add the new water.

Capacity: Maximum amount of stuff the Vector/bucket can hold. Size: Amount of stuff currently in the Vector/bucket.

share|improve this answer

size() tells you how many elements you currently have. capacity() tells you how large the size can get before the vector needs to reallocate memory for itself.

Capacity is always greater than or equal to size. You cannot index beyond element # size()-1.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.