Should (in C++11) std::vector::resize(size_type) work for the default constructible value_type int[4]?

后端 未结 2 1830
遇见更好的自我
遇见更好的自我 2021-01-17 13:34

In C++11, there are two versions of std::vector::resize():

void resize( size_type count );
void resize( size_type count, const value_type& v         


        
2条回答
提交回复
热议问题