gpt4 book ai didi

C++ : Factorize code without passing a million arguments

转载 作者:太空狗 更新时间:2023-10-29 20:54:52 25 4
gpt4 key购买 nike

我正在做 C/C++ 编程(主要是 C++),我发现自己需要分解实际上两倍相同的代码,除了每次出现的“左”都被“右”替换。代码完成后,我需要知道正在执行的是“左”还是“右”版本,仅此而已,两者都会返回一个我可以理解的数字(一旦与左或右信息结合) .

在此设置中,每次更改都需要进行两次,这很烦人。

所以我可以通过将左/右替换为“其他”来简单地分解并调用分解函数两次,每次都知道我是为“左”还是为“右”调用它。

现在当我们到达那部分代码时,已经有一百万个变量(游标、ID、正在填充的数组等)。因此,如果我想分解左/右代码,我需要函数有大量参数,这看起来很难看。

我也不想用仅在这种情况下使用的属性重载我的 C++ 类。

有什么建议可以在这里顺利分解吗?

    int arrayRight[many], arrayLeft[many], cursor;

while(1)
{
rightThing = arrayRight[cursor];
// Process with RightThing assigned
// ...
// ...
// ...

leftThing = arrayLeft[cursor]
// Process with RightThing assigned
// ...
// ...
// ...

cursor++;
}

最佳答案

试试这个? (它只适用于 C++14,因为它使用自动 lambda)

auto func = [&](auto& theThing){
// blah, blah code
};

func(arrayRight[cursor]);
func(arrayLeft [cursor]);

[&] 这里的意思是将同一范围内的所有变量都导入到lambda函数中。

对于旧的 C++ 版本,我使用下面的代码作为一种丑陋的方式(在学校的 C99 项目中)。

int* pData[2] = {arrayRight, arrayLeft};
for (int i=0; i<2; i++)
{
int* theThing = pData[i];
// blah, blah
}

我的一些 friend 告诉我宏可以容纳 VA_ARGS,所以这是一个宏方法。它应该适用于 GCC。但是对于 MSVC 2003,它不起作用。 (__typeof需要替换为boost::typeof,旧版本MSVC不支持匿名结构体定义)

#define in(...) __VA_ARGS__
#define PP_ARG_N( \
_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, \
_11, _12, _13, _14, _15, _16, _17, _18, _19, _20, \
_21, _22, _23, _24, _25, _26, _27, _28, _29, _30, \
_31, _32, _33, _34, _35, _36, _37, _38, _39, _40, \
_41, _42, _43, _44, _45, _46, _47, _48, _49, _50, \
_51, _52, _53, _54, _55, _56, _57, _58, _59, _60, \
_61, _62, _63, N, ...) N
#define PP_RSEQ_N() \
63, 62, 61, 60, \
59, 58, 57, 56, 55, 54, 53, 52, 51, 50, \
49, 48, 47, 46, 45, 44, 43, 42, 41, 40, \
39, 38, 37, 36, 35, 34, 33, 32, 31, 30, \
29, 28, 27, 26, 25, 24, 23, 22, 21, 20, \
19, 18, 17, 16, 15, 14, 13, 12, 11, 10, \
9, 8, 7, 6, 5, 4, 3, 2, 1, 0
#define PP_NARG_(...) PP_ARG_N(__VA_ARGS__)
#define PP_NARG(...) PP_NARG_(__VA_ARGS__, PP_RSEQ_N())

#define withInternal(dataType, desiredType, x, dataCnt, data...) for(struct {size_t __i; dataType __t[dataCnt];} __s = {0, data}; x = __s.__t[__s.__i], __s.__i < dataCnt; __s.__i++)
#define with(x, ...) withInternal(__typeof(__VA_ARGS__), __typeof(__VA_ARGS__), x, PP_NARG(__VA_ARGS__), __VA_ARGS__)
#define withConst(x, ...) withInternal(__typeof(__VA_ARGS__), __typeof((__VA_ARGS__) + 0), x, PP_NARG(__VA_ARGS__), __VA_ARGS__)
#define withType(tn, x, ...) withInternal(tn, tn, x, PP_NARG(__VA_ARGS__), __VA_ARGS__)

当你使用它时:

int main()
{
int x;
int s1=2, s2=3;
with(x, in(s1, s2))
cout<<x<<endl;
withConst(x, in(45, 55))
cout<<x<<endl;
withType(int, x, in(45, s1, 55, s2))
cout<<x<<endl;
return 0;
}

我相信它更清楚。

  • with 使用变量(基本上),因为当将常量传递给 with 时,gcc __typeof 会为 x 生成自动常量类型 无法分配。
  • withConst 使用 x+0 技巧来删除 const 类型的变量,但 + 运算符并不适用于所有数据类型,因此它有局限性。
  • withType 指定数据类型,适合混合情况。

关于C++ : Factorize code without passing a million arguments,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37784640/

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