【发布时间】:2016-06-16 01:04:57
【问题描述】:
此 sn-p 至少需要标志 -std=c++Ox 才能使用 GCC-4.9 进行编译。
请参阅online compilation on gcc.godbolt.org。
template <typename T, int SIZE>
int foo (const T (&table) [SIZE]) // T = char
{
return SIZE ? table[0] : 0;
}
template <typename T, int SIZE>
int bar (const T (&table) [SIZE]) // T = char *
{
return SIZE ? table[0][0] : 0;
}
int main (int argc, char *argv[])
{
return argc
+ foo( "foo" )
+ foo( {argv[0][0], argv[1][1]} ) // array rvalue
+ bar( {argv[0], argv[1] } ); // array rvalue
}
使用 GCC-4.9 ... GCC-6 可以很好地编译。
但无法使用以前的 GCC 版本和所有 Clang 版本(最后测试的是 Clang-3.7.1)。
问题
-
要更改什么来解决问题?
(如果可能,只调整main()正文) -
有没有办法让代码与 C++03 兼容?
(同样,如果可能,仅在main()正文中)
GCC-4.8.2 输出
example.cpp: In function 'int main(int, char**)':
17 : error: no matching function for call to 'foo(<brace-enclosed initializer list>)'
+ foo( { argv[0][0], argv[1][1] } )
^
17 : note: candidate is:
2 : note: template<class T, int SIZE> int foo(const T (&)[SIZE])
int foo (const T (&table) [SIZE]) // T = char
^
2 : note: template argument deduction/substitution failed:
17 : note: couldn't deduce template parameter 'T'
+ foo( { argv[0][0], argv[1][1] } )
^
18 : error: no matching function for call to 'bar(<brace-enclosed initializer list>)'
+ bar( { argv[0], argv[1] } );
^
18 : note: candidate is:
8 : note: template<class T, int SIZE> int bar(const T (&)[SIZE])
int bar (const T (&table) [SIZE]) // T = char *
^
8 : note: template argument deduction/substitution failed:
18 : note: couldn't deduce template parameter 'T'
+ bar( { argv[0], argv[1] } );
^
Compilation failed
Clang-3.7.1 输出
17 : error: no matching function for call to 'foo'
+ foo( { argv[0][0], argv[1][1] } )
^~~
2 : note: candidate template ignored: couldn't infer template argument 'T'
int foo (const T (&table) [SIZE]) // T = char
^
18 : error: no matching function for call to 'bar'
+ bar( { argv[0], argv[1] } );
^~~
8 : note: candidate template ignored: couldn't infer template argument 'T'
int bar (const T (&table) [SIZE]) // T = char *
^
2 errors generated.
Compilation failed
【问题讨论】:
-
C++03 中没有数组右值,您必须创建命名数组以便
const T (&table) [SIZE]可以绑定到它们。 (或更改 foo 和 bar) -
@M.M 谢谢你的解释 :-) 我不知道。我刚刚澄清了替换“初始化列表”->“数组右值”的问题。我的问题更正确吗?干杯
标签: c++ c++11 g++ initializer-list clang++