我已经使用clang测试了以下两种形式,它们都被接受:

using IntMap = std::map<int, int>;

IntMap map1 {{
  {1, 1},
  {2, 2},
  {3, 3},
  {4, 4}
}};

IntMap map2 {
  {1, 1},
  {2, 2},
  {3, 3},
  {4, 4}
};

在Visual Studio 2013上,后一个示例无法编译,说明映射中没有采用4个参数的构造函数。

我假设两者实际上都是有效的。两者有什么区别?为什么第二个示例在Visual Studio 2013上不起作用?

最佳答案

作为T.C.在评论中指出,两者都是合法的。第一种样式can cause weirdness,但是如果第二种样式在VS2013中对您失败,则为编译器错误或部分实现)。

09-06 22:27