gpt4 book ai didi

c++ - 如何将函数作为参数传递给 C++ 中的函数宏

转载 作者:搜寻专家 更新时间:2023-10-31 00:07:48 24 4
gpt4 key购买 nike

我正在学习这里的 C++ 教程 - http://www.cplusplus.com/doc/tutorial/preprocessor/了解预处理器指令

因此,我尝试编写一个简单的函数宏,它接受一个函数名作为参数并定义该函数,但我似乎没有找到任何关于如何这样做的示例。

我的尝试如下:

#include<iostream>
using namespace std;

#define FUNCTION_WRAPPER(function) function(int arg1, int arg2) { cout << arg1 * arg2; }

FUNCTION_WRAPPER(multiply);

int main() {
multiply(1, 2);
return 0;
}

输出

C++ requires a type specifier for all declarations.

最佳答案

您需要指定函数的类型:

#define FUNCTION_WRAPPER(function) \
void function(int arg1, int arg2) { cout << arg1 * arg2; }

关于c++ - 如何将函数作为参数传递给 C++ 中的函数宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52355948/

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