将int-C的空值*转换为2D数组我试图在C中转换一个空*指向int*2D数组的指针。下面是我试图使用的代码(删除了所有无关的比特):\*assume that i have a data structure called graph with some
*element "void** graph" in it and some element "int order" */void initialise_graph_data(graph_t *graph){
void **graph_data = NULL;
int (*matrix)[graph->order];
size_t size = (graph->order * graph->order) * sizeof(int);
graph_data = safe_malloc(size); /*safe malloc works fine*/
matrix = (int(*)[graph->order])graph_data;
graph->graph = graph_data;}当我编译它时,它工作得很好,但是给了我一个警告:变量“矩阵”是设置的,但没有使用。我真的不想使用临时矩阵变量,因为函数应该只是初始化数组,而不是在数组中放置任何内容;但是,如果我试图将图形_data直接转换为int*时,当我将它辅助到图->图时,如下所示:graph->graph = (int(*)[graph->order])graph_data;它给我一个来自不兼容指针类型警告的赋值。我只是投错了吗?有人对我如何使它在没有临时“矩阵”变量的情况下工作有任何建议吗?或者如果没有,我能用这个变量做些什么,这样它就不会给我警告,它已经设置了,但没有被使用。谢谢
1 回答
函数式编程
TA贡献1807条经验 获得超9个赞
+--------------+--------------+-----+----------------+--------------+-----+------------------+ | matrix[0][0] | matrix[0][1] | ... | matrix[0][N-1] | matrix[1][0] | ... | matrix[M-1][N-1] | +--------------+--------------+-----+----------------+--------------+-----+------------------+
+-----------+-----------+-----------+-----+ | matrix[0] | matrix[1] | matrix[2] | ... | +-----------+-----------+-----------+-----+ | | | | | V | | +--------------+--------------+-----+ | | | matrix[2][0] | matrix[2][1] | ... | | | +--------------+--------------+-----+ | | | V | +--------------+--------------+-----+ | | matrix[1][0] | matrix[1][1] | ... | | +--------------+--------------+-----+ | V +--------------+--------------+-----+ | matrix[0][0] | matrix[0][1] | ... | +--------------+--------------+-----+
- 1 回答
- 0 关注
- 298 浏览
添加回答
举报
0/150
提交
取消