Advantages of using arrays instead of std::vector?

前端 未结 5 964
囚心锁ツ
囚心锁ツ 2020-12-05 20:41

I\'m currently seeing a lot of questions which are tagged C++ and are about handling arrays.
There even are questions which ask about methods/features for arrays which a

5条回答
  •  一生所求
    2020-12-05 21:18

    I'd go for std::array available in C++0x instead of plain arrays which can also be initialized like standard arrays with an initializer list

    https://en.cppreference.com/w/cpp/container/array

提交回复
热议问题