What is the easiest way to initialize a std::vector with hardcoded elements?

后端 未结 29 3262
终归单人心
终归单人心 2020-11-22 05:07

I can create an array and initialize it like this:

int a[] = {10, 20, 30};

How do I create a std::vector and initialize it sim

29条回答
  •  佛祖请我去吃肉
    2020-11-22 05:41

    It is pretty convenient to create a vector inline without defining variable when writing test, for example:

    assert(MyFunction() == std::vector{1, 3, 4}); // <- this.
    

提交回复
热议问题