gpt4 book ai didi

c++ - macro func 和 function func 是如何区别开来的呢?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:03:37 25 4
gpt4 key购买 nike

#include<iostream>
int func(int, int);
#define func(x,y) x/y+x
int main()
{
int i, j;

scanf("%d", &i);
scanf("%d", &j);

printf("%d ", func(i + j, 3));
printf("%d\n", func(i + j, 3));

}

int func(int x, int y) {
return y / x + y;
}

应该向这段代码添加什么,以便第一个输出是宏的结果,第二个是函数的结果?

最佳答案

几种方式:

printf("%d ", func(i + j, 3)); // Macro call
#undef func // Macro is no longer defined
printf("%d\n", func(i + j, 3)); // Function call

printf("%d ", func(i + j, 3)); // Macro call
printf("%d\n", (func)(i + j, 3)); // Function call

关于c++ - macro func 和 function func 是如何区别开来的呢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51930406/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com