std::map 扩展初始值设定项列表会是什么样子?

发布于 2024-09-10 02:10:41 字数 114 浏览 5 评论 0原文

如果它存在,std::map 扩展初始值设定项列表会是什么样子?

我已经尝试了一些组合......嗯,我能想到的所有 GCC 4.4 的组合,但没有发现任何可以编译的结果。

If it even exists, what would a std::map extended initializer list look like?

I've tried some combinations of... well, everything I could think of with GCC 4.4, but found nothing that compiled.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅唱ヾ落雨殇 2024-09-17 02:10:42

它存在并且运行良好:

std::map <int, std::string>  x
  {
    std::make_pair (42, "foo"),
    std::make_pair (3, "bar")
  };

请记住,映射的值类型是pair,因此您基本上需要具有相同或可转换类型的对的列表。

通过std::pair统一初始化,代码变得更加简单

std::map <int, std::string> x { 
  { 42, "foo" }, 
  { 3, "bar" } 
};

It exists and works well:

std::map <int, std::string>  x
  {
    std::make_pair (42, "foo"),
    std::make_pair (3, "bar")
  };

Remember that value type of a map is pair <const key_type, mapped_type>, so you basically need a list of pairs with of the same or convertible types.

With unified initialization with std::pair, the code becomes even simpler

std::map <int, std::string> x { 
  { 42, "foo" }, 
  { 3, "bar" } 
};
弥繁 2024-09-17 02:10:42

我想在doublep的答案中添加列表初始化也适用于嵌套映射。例如,如果您有一个带有 std::map 值的 std::map ,那么您可以通过以下方式初始化它(只需确保您不会淹没在花括号中):

int main() {
    std::map<int, std::map<std::string, double>> myMap{
        {1, {{"a", 1.0}, {"b", 2.0}}}, {3, {{"c", 3.0}, {"d", 4.0}, {"e", 5.0}}}
    };

    // C++17: Range-based for loops with structured binding.
    for (auto const &[k1, v1] : myMap) {
        std::cout << k1 << " =>";
        for (auto const &[k2, v2] : v1)            
            std::cout << " " << k2 << "->" << v2;
        std::cout << std::endl;
    }

    return 0;
}

输出:

1 =>; a->1 b->2
3=> c->3 d->4 e->5

Coliru 上的代码

I'd like to add to doublep's answer that list initialization also works for nested maps. For example, if you have a std::map with std::map values, then you can initialize it in the following way (just make sure you don't drown in curly braces):

int main() {
    std::map<int, std::map<std::string, double>> myMap{
        {1, {{"a", 1.0}, {"b", 2.0}}}, {3, {{"c", 3.0}, {"d", 4.0}, {"e", 5.0}}}
    };

    // C++17: Range-based for loops with structured binding.
    for (auto const &[k1, v1] : myMap) {
        std::cout << k1 << " =>";
        for (auto const &[k2, v2] : v1)            
            std::cout << " " << k2 << "->" << v2;
        std::cout << std::endl;
    }

    return 0;
}

Output:

1 => a->1 b->2
3 => c->3 d->4 e->5

Code on Coliru

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文