我正在尝试将值分配给C中的2d int数组。
int **worldMap;
我想将每一行分配给数组,所以我在循环中执行此操作:
worldMap[0][sprCount] = split(tmp.c_str(), delim);
sprCount++;
问题是我得到一个错误,上面的行说不能将int *转换为int。
以下是创建2D数组的代码:
int** Array2D(int arraySizeX, int arraySizeY)
{
int** theArray;
theArray = (int**) malloc(arraySizeX*sizeof(int*));
for (int i = 0; i < arraySizeX; i++)
theArray[i] = (int*) malloc(arraySizeY*sizeof(int));
return theArray;
}
我想获取此函数的返回指针(如上所示)并将其放入Y维度。
int* split(const char* str, const char* delim)
{
char* tok;
int* result;
int count = 0;
tok = strtok((char*)str, delim);
while (tok != NULL)
{
count++;
tok = strtok(NULL, delim);
}
result = (int*)malloc(sizeof(int) * count);
count = 0;
tok = strtok((char*)str, delim);
while (tok != NULL)
{
result[count] = atoi(tok);
count++;
tok = strtok(NULL, delim);
}
return result;
}