initialize a vector to zeros C++/C++11

后端 未结 2 2012
轻奢々
轻奢々 2020-12-04 07:45

I know in C++11 they added the feature to initialize a variable to zero as such

double number = {}; // number = 0
int data{};  // data = 0

2条回答
  •  情歌与酒
    2020-12-04 08:17

    You don't need initialization lists for that:

    std::vector vector1(length, 0);
    std::vector vector2(length, 0.0);
    

提交回复
热议问题