gpt4 book ai didi

c++ - 从另一个参数的值设置默认参数值

转载 作者:太空宇宙 更新时间:2023-11-03 10:26:32 25 4
gpt4 key购买 nike

<分区>

是否可以实现这样的功能,如果未指定,该参数的值将默认为另一个参数的值?

例子:

class Health
{
public:
// If current is not specified, its value defaults to max's value
Health(int max, int current = max) : max_(max), current_(current) { }
int max_;
int current_;
};

就像现在一样,我遇到了一个编译错误:

error: 'max' was not declared in this scope
Health(int max, int current = max) : max_(max), current_(current) { }
^

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