代码之家  ›  专栏  ›  技术社区  ›  Aconcagua

带括号和初始化器列表的自动

  •  12
  • Aconcagua  · 技术社区  · 6 年前

    来自 another question :

    因为C++ 17, auto x0{1, 2, 3, 4}; ,之前推导出的初始化器列表,不再被允许(当然,我们可以使用 auto x0 = {1, 2, 3, 4}; 相反……)。现在总是避免统一初始化(例如 std::vector<int> v({1, 2, 3, 4}); 也就是说。 明确的 以初始化器列表作为参数的构造函数调用)并与定义良好的 auto x(7); (一个我也不会使用自己的建筑……)我想出了以下几点:

    auto x({1, 2, 3, 4});
    // -> std::initializer_list<int> x({1, 2, 3, 4});
    

    这是用GCC 7.2.0(mingW64)编译的,但发出了警告(注释后的版本又没有):

    list-initializer for non-class type must not be parenthesized

    我在标准中找不到任何相关内容,所以现在的问题是(出于纯粹的兴趣…):

    为什么不允许这样做?(这是否包含在标准中,或者我们是否需要将其视为GCC错误?)

    1 回复  |  直到 6 年前
        1
  •  6
  •   songyuanyao    6 年前

    non-deduced context

    [dcl.type.auto.deduct]/4

    std​::​initializer_­list<U>

    const auto &i = expr;
    

    template <class U> void f(const U& u);
    

    auto x({1, 2, 3, 4}); U {1, 2, 3, 4}

    [temp.deduct.call]/1

    template<class T> void g(T);
    g({1,2,3});                     // error: no argument deduced for T