gpt4 book ai didi

c++ - 我怎样才能清楚地指定我要传递哪些参数以及哪些参数保持默认?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:51:56 26 4
gpt4 key购买 nike

因此询问:Default argument in c++

假设我有这样一个函数:void f(int p1=1, int p2=2, int p3=3, int p4=4);

我只想使用一些参数来调用它——其余的将是默认值。

像这样的东西会起作用:

template<bool P1=true, bool P2=true, bool P3=true, bool P4=true>
void f(int p1=1, int p2=2, int p3=3, int p4=4);
// specialize:
template<>
void f<false, true, false, false>(int p1) {
f(1, p1);
}
template<>
void f<false, true, true, false>(int p1, int p2) {
f(1, p1, p2);
}
// ... and so on.
// Would need a specialization for each combination of arguments
// which is very tedious and error-prone

// Use:
f<false, true, false, false>(5); // passes 5 as p2 argument

但是它需要太多的代码才能实用。

有更好的方法吗?

最佳答案

使用命名参数习语(→ FAQ link)。

Boost.Parameters 库(→ link )也可以解决此任务,但代价是代码冗长且清晰度大大降低。它在处理构造函数方面也存在不足。当然,它需要安装 Boost 库。

关于c++ - 我怎样才能清楚地指定我要传递哪些参数以及哪些参数保持默认?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27001579/

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