(int (*)[])var1 代表什么?

发布于 2024-09-04 01:26:19 字数 551 浏览 7 评论 0原文

我找到了这个示例代码,并尝试用谷歌搜索 (int (*)[])var1 代表什么,但没有得到有用的结果。

#include <unistd.h>
#include <stdlib.h>

int i(int n,int m,int var1[n][m]) {
    return var1[0][0];
}

int example() {
    int *var1 = malloc(100);
    return i(10,10,(int (*)[])var1);
} 

通常我在 C99 中使用 VLA,所以我习惯了:

#include <unistd.h>
#include <stdlib.h>

int i(int n,int m,int var1[n][m]) {
    return var1[0][0];
}

int example() {
    int var1[10][10];
    return i(10,10,var1);
} 

谢谢!

I found this example code and I tried to google what (int (*)[])var1 could stand for, but I got no usefull results.

#include <unistd.h>
#include <stdlib.h>

int i(int n,int m,int var1[n][m]) {
    return var1[0][0];
}

int example() {
    int *var1 = malloc(100);
    return i(10,10,(int (*)[])var1);
} 

Normally I work with VLAs in C99 so I am used to:

#include <unistd.h>
#include <stdlib.h>

int i(int n,int m,int var1[n][m]) {
    return var1[0][0];
}

int example() {
    int var1[10][10];
    return i(10,10,var1);
} 

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

只是我以为 2024-09-11 01:26:19

它是指向 int 数组的指针的类型转换。

It's a typecast to a pointer that points to an array of int.

日久见人心 2024-09-11 01:26:19

(int (*)[]) 是指向 int 数组的指针。相当于 int[n][m] 函数参数。

这是 C 中的常见习惯用法:首先执行 malloc 来保留内存,然后将其转换为所需的类型。

(int (*)[]) is a pointer to an array of ints. Equivalent to the int[n][m] function argument.

This is a common idiom in C: first do a malloc to reserve memory, then cast it to the desired type.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文