小编Mah*_*mad的帖子

函数标识符和变量标识符的关系?

ac 程序中的函数名称是一个变量,它在低级别保存函数体的起始地址?

例子:

int x = 0;
Run Code Online (Sandbox Code Playgroud)

这里 x 是内存中的标识符和地址,函数名称也是如此吗?

int sample(int x, int y) {

    ////code here
    return 0;

}
Run Code Online (Sandbox Code Playgroud)

我猜:

这里的示例是内存中地址的标识符,该地址在内存中保存函数的起点。

c c++ compiler-construction

0
推荐指数
1
解决办法
92
查看次数

标签 统计

c ×1

c++ ×1

compiler-construction ×1