Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 C++ 中,有没有办法将 a 转换float**为float[][]类型?我也想知道如何反过来转换它。
float**
float[][]
你不需要转换任何东西。只需通过以下方式取消引用它[][]:
[][]
float **a; // allocate memory // a[0][0] = 1;
小心不要触摸未分配的越界物品。
您可以在这里查看更多示例,但基本上正如 MM 所说,您不需要转换,您总是可以这样做:
int x[10]; int *y = x;
与二维数组相同