gpt4 book ai didi

c++ - 比较参数包?扩展语法?

转载 作者:行者123 更新时间:2023-11-30 05:34:20 24 4
gpt4 key购买 nike

考虑以下代码:

#include <utility>

class foo
{
private:
struct s
{
int value;
s* p2;
} *p;
public:
foo() : p(new s{ 0, nullptr }) {}

template<class... Args>
void fun(Args&&... val)
{
if (val > p->value) //point of interest
p->p2 = new s{ { std::forward<Args>(val)... }, nullptr };
}
};

int main()
{
foo o;
o.fun(34);
}

如何让 val > p->value 工作?我尝试了 val... > p->value{val...} > p->value 之类的东西,但我似乎无法获得正确的结果句法。谢谢!

最佳答案

How would I get val > p->value to work?

一个选择是使用更简单的函数:

void fun(int val) 
{
if (val > p->value)
p->p2 = new s{ val, nullptr };
}

关于c++ - 比较参数包?扩展语法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34282408/

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