我试图将对二维数组的引用传递给C ++中的函数。我知道在编译时这两个维度的大小。这是我现在所拥有的:
const int board_width = 80;
const int board_height = 80;
void do_something(int[board_width][board_height]& array); //function prototype
但这是行不通的。我从g ++收到此错误:
error: expected ‘,’ or ‘...’ before ‘*’ token
此错误是什么意思,我该如何解决?
慕无忌1623718
牛魔王的故事
相关分类