2

您好,在编译以下内容时出现错误。我不确定为什么会这样,如果我将这些更改为 [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
4

1 回答 1

5

int data2[row][col];不是标准 C++,因为rowandcol不是常量表达式。您的编译器有一个扩展,允许您使用具有非常量维度的数组,但是这样的野兽无法匹配需要具有恒定维度的普通数组的模板签名。

鉴于这一点row并且col在您的程序中实际上并没有变化,在这种情况下,您可以通过声明它们来完全避免这个问题constrow并且col 常量表达式:

int main ( int argc, char *argv[] )
{
  const size_t row (10);
  const size_t col (20);

  int data1[10][20];
  fun ( data1 );// compiles

  int data2[row][col];
  fun ( data2 );// compiles too!

  return 0;
}
于 2013-07-27T01:11:11.187 回答