我想传递一个2D数组到我的线程函数,必须有参数(void *args)。当我想遍历函数中的数组时,我一直遇到以下错误:
下标值不是数组、指针或向量sumArrays += args[i]; [j];
我不知道如何解决这个问题。传递给线程函数的值也是整数。
任何帮助都太棒了!
谢谢
除了使用struct
,还可以创建具有正确类型的本地变量:
#define ROWS 3
#define COLS 3
/* Sum the values in a 3x3 array. */
/* This would be your thread entry point. */
void sum(void *args) {
int (*array)[ROWS][COLS] = args; // Declare and initialize a pointer to a ROWSxCOLS array of ints.
int row;
int col;
int total = 0;
for(row = 0; row < ROWS; row++) {
for (col = 0; col < COLS; col++) {
total += (*array)[row][col]; // Access [row][col] from the array pointed to by "array".
}
}
(void) total;
}
int main(int argc, char** argv) {
int arrayIn[ROWS][COLS] = {
{0, 1, 2},
{3, 4, 5},
{6, 7, 8}
};
sum(arrayIn);
}
@ian-abbott建议的struct
解决方案的好处是允许轻松添加更复杂的数据传递给线程(例如数组的尺寸)。