gpt4 book ai didi

c - 从 double 函数返回 void?

转载 作者:太空宇宙 更新时间:2023-11-04 00:25:30 25 4
gpt4 key购买 nike

我有一个 double 函数,通常返回变量的新值,但有时我不想更改变量,我想通过返回一个特殊值来表示这一点,例如 void。这可能吗?

例如:

double GetNewValue(int feature) {
switch( feature ) {
case TYPE1:
return void; // or maybe use return; here?
case TYPE2:
return 2.343;
default:
return featureDefaultValue;
}
}

PS:我知道我可以使用 NaN,但我已经将它用作具有另一种含义的有效值(尚无可用数字)。

/编辑:谢谢大家的回答,这 3 个答案都适用于我的问题并且都同样有效。我现在正在努力选择我要使用哪一个(我将接受哪个,但我希望我能全部接受!)。

最佳答案

在这种情况下,您需要从一个函数返回两个东西,而不是一个。这样做的一种常见方法是采用指向返回值的指针,并返回一个是/否标志以指示实际 double 的有效性:

int GetNewValue(double *res, int feature) {
switch( feature ) {
case TYPE1:
return 0; // no change to res
case TYPE2:
*res = 2.343;
return 1;
default:
*res = featureDefaultValue;
return 1;
}

现在而不是这样做

double res = GetNewValue(myFeature);

您的函数的用户需要这样做:

double res;
if (GetNewValue(&res, myFeature)) {
// use res here - it's valid
} else {
// do not use res here - it's not been set
}

关于c - 从 double 函数返回 void?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16401986/

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