initialize vector of pairs

耗尽温柔 提交于 2019-12-11 09:06:22

问题


I wanted to initialize a vector of pairs with something like this

std::vector< std::pair<bool, bool> > myvector(initSequence.size(), X );

what shall I substitute in place of X, if I want to initialize every pair with (false, false)?

Thank you


回答1:


std::pair<bool,bool>(false, false)

or

std::make_pair(false, false)



回答2:


Nothing. std::pair<bool, bool> will be default constructed as make_pair(false, false).



来源:https://stackoverflow.com/questions/4405630/initialize-vector-of-pairs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!