vote up 1 vote down star

Is there a performance penalty for working with a vector from the standard library in C++ instead of arrays in C?

flag

3  
suggest your benchmark your precise situation. – Mitch Wheat Sep 19 at 2:36
@Wheat, Couldn't agree more with you. – strager Sep 19 at 3:00

2 Answers

vote up 6 vote down check

No, there's not (provided you compile with optimization so inlining can happen), provided you mean dynamically sized C "arrays" obtained with malloc.

Fixed-sized arrays in C will have the slight advantage that their address is fixed after linking (if global), or that they live directly on the stack rather than indirectly through a pointer to somewhere on the heap. I do believe there is still no performance difference; constant base addresses aren't faster than variable ones; both get loaded into a CPU register.

link|flag
vote up 1 vote down

The only real difference is that accesses with std::vector go through trivial functions. So long as you're using an appropriate optimization level such that those function calls get inlined, they'll be the same.

link|flag

Your Answer

Get an OpenID
or

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