gpt4 book ai didi

C++ 在一个参数中传递多个参数

转载 作者:行者123 更新时间:2023-11-30 04:22:21 26 4
gpt4 key购买 nike

这听起来可能令人困惑,但您如何在一个 ARGUMENT 中传递多个 ARGUMENT。

我试过的是:

#define CALL(v, look, param, expect) v(param){look(expect);}

使用示例(不起作用):

void CALL(InitD3D, engine->InitD3D, (HWND hWnd, bool windowed), (hWnd, windowed))

// Which should give(i want it to):
// void InitD3D(HWND hWnd, bool windowed){engine->InitD3D(hWnd, windowed);}
// But it may give: InitD3D((HWND hWnd, bool windowed)){engine->InitD3D((hWnd, windowed));}
// Or something similar or not...

基本单词也是如此,我怎样才能在一个参数中传递多个参数,而不会搞砸......

谢谢

最佳答案

#define CALL(v, look, param, expect) v param {look expect;}

namespace foo {
void bob(int x, int y) {}
}
CALL(void bob, foo::bob, (int x, int y), (x,y))

int main() {
bob(7,2);
}

我建议不要使用这种技术。

关于C++ 在一个参数中传递多个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13868039/

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