10

我正在尝试为 重载运算符std::initializer_list,但以下内容既不在 GCC 4.7.2 也不在 Clang 3.2 中编译:

#include <initializer_list>

void operator+(const std::initializer_list<int>&, const std::initializer_list<int>&);

int main() {
   {1, 2} + {3, 4};
}

13.5/6 规定操作员函数应至少有一个参数,其类型为类、枚举或对其中任何一个的引用,并且标准指定initializer_list为模板类,因此在我看来它应该是一致的。但是,显然 Clang 和 GCC 都认为我正在尝试使用他们的非标准块表达式。

海合会:

Compilation finished with errors:
source.cpp: In function 'int main()':
source.cpp:7:8: warning: left operand of comma operator has no effect [-Wunused-value]
source.cpp:7:9: error: expected ';' before '}' token
source.cpp:7:9: warning: right operand of comma operator has no effect [-Wunused-value]
source.cpp:7:13: error: expected primary-expression before '{' token
source.cpp:7:13: error: expected ';' before '{' token

铛:

Compilation finished with errors:
source.cpp:7:5: warning: expression result unused [-Wunused-value]
   {1, 2} + {3, 4};
    ^
source.cpp:7:9: error: expected ';' after expression
   {1, 2} + {3, 4};
        ^
        ;
source.cpp:7:8: warning: expression result unused [-Wunused-value]
   {1, 2} + {3, 4};
       ^
source.cpp:7:13: error: expected expression
   {1, 2} + {3, 4};
            ^
2 warnings and 2 errors generated.

这应该编译吗?如果不是,为什么不呢?

编辑

毫不奇怪,VS 2012 的 11 月 CTP 也失败了:

error C2143: syntax error : missing ';' before '}'
error C2059: syntax error : '{'
error C2143: syntax error : missing ';' before '{'
4

1 回答 1

6

据我了解13.5/6,

操作符函数要么是非静态成员函数,要么是非成员函数,并且至少有一个类型为类、类引用、枚举或枚举引用的参数

这应该是不可能的。Braced-init-lists 与std::initializer_lists 不同,它们不可互换。但是,以下应该有效:

std::initializer_list<int>({1,2}) + std::initializer_list<int>({2,1})

或这个:

operator+({1,2}, {2,1})

更新:为了澄清,重点是语言语法中没有规则允许括号初始化列表出现在 OP 建议的上下文中。如果您愿意,括号初始化列表只能出现在即将初始化某些内容的上下文中。

于 2013-01-17T00:03:47.943 回答