Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用这样的东西初始化一个对的向量
std::vector< std::pair<bool, bool> > myvector(initSequence.size(), X );
如果我想用 (false, false) 初始化每一对,我应该用什么代替 X?
谢谢
std::pair<bool,bool>(false, false)
或者
std::make_pair(false, false)
没有什么。 std::pair<bool, bool>将默认构造为make_pair(false, false).
std::pair<bool, bool>
make_pair(false, false)