The answer is “it depends”, or perhaps better put as “nobody knows”, as this type of question is always tightly coupled with compiler optimisations, processor architecture and many other factors.
I would also like to point out that if you find one better on one system, it may not reflect that it’s better in a diffferent situation – e.g. different compiler or different processor or different operating system. If the overall solution is very similar [and I believe they are in this case], the results of small differences in code generation, or differences in processor architecture can alter the results in either direction. Or for example how well memory allocations line up with cache-lines or virtual memory pages to avoid “extra work”.
ALWAYS when discussing performance, never guess and don’t ask on the internet. Measure all the options, measure all options again (on some other platform, different compiler options, etc), and then decide which is better [assuming the code is at all performance critical in first place].
3
solved Which has better performance? A std::array or C array? [closed]