gpt4 book ai didi

c++ - 构造关联容器

转载 作者:行者123 更新时间:2023-11-28 03:54:52 24 4
gpt4 key购买 nike

我确信(直到我刚刚尝试过)可以使用数组样式表示法实例化关联容器。

例如,

std::set< int > _set = { 2, 3, 5 };

情况并非如此,但我想知道是否有任何其他方法可以像这样在构造函数中批量初始化容器?

最佳答案

您可以使用 Boost.Assign .

std::set< int > _set = boost::assign::list_of(2)(3)(5);

关于c++ - 构造关联容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3995594/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com