问个指针的问题。。。迷惑了
程序目的是吧一个指针指向一个n行3列的数组,代码是这样的,float Rotate_Matrixs[3][4];
float *p;
float Temp_Position_Body[3];
float Temp_Position_Camera[3];
float (*Object_Line_Pointer)[][3];
float (*Draw_Object_Line_Pointer)[][2][2][Draw_Framebuf_Num_DF];
float Cos_Roll,Cos_Pitch,Cos_Yaw;
float Sin_Roll,Sin_Pitch,Sin_Yaw;
p = &Rotate_Matrixs[0][0];
Object_Line_Pointer = p;//报错指向这里
报错如下,
Zmingl.c(145): error: #513: a value of type "float *" cannot be assigned to
an entity of type "float (*)[][3]"
都是指针,我在tc下编译是报警,
警告 Zmingl.c 147: 指针转换后指向其它类型在 Target_Object_Rotate 函数中
但是在arm的mdk的ide下是报错编译不过去
Zmingl.c(145): error: #513: a value of type "float *" cannot be assigned to
an entity of type "float (*)[][3]"
请问大家这是什么原因,我理解就应该是个指针赋值啊,很正常啊。。为啥呢