您好,在编译以下内容时出现错误。我不确定为什么会这样,如果我将这些更改为 [10][20] 之类的 const 值,它可以工作,但即使这是一个声明,它似乎也不喜欢该变量,因此它不会改变尺寸。我很困惑为什么会发生这种错误,请帮忙。请参见下面的代码:
#include <iostream>
template <size_t X, size_t Y>
void fun (int (&array)[X][Y])
{
std::cout << " do something fun " << std::endl;
}
int main ( int argc, char *argv[] )
{
size_t row (10);
size_t col (20);
int data1[10][20];
fun ( data1 );// compiles
int data2[row][col];
fun ( data2 );// fails
return 0;
}
g++ -I/usr/include -I/usr/local/include -std=c++11 -pthread -O3 -Wall -c main.cpp -o main.o
main.cpp: In function ‘int main(int, char**)’:
main.cpp:18:15: error: no matching function for call to ‘fun(int [(((sizetype)(((ssizetype)row) + -1)) + 1)][(((sizetype)(((ssizetype)col) + -1)) + 1)])’
main.cpp:18:15: note: candidate is:
main.cpp:4:6: note: template<long unsigned int X, long unsigned int Y> void fun(int (&)[X][Y])
main.cpp:4:6: note: template argument deduction/substitution failed:
main.cpp:18:15: note: variable-sized array type ‘int [(((sizetype)(((ssizetype)row) + -1)) + 1)][(((sizetype)(((ssizetype)col) + -1)) + 1)]’ is not a valid template argument
make: *** [main.o] Error 1