gpt4 book ai didi

c# - 仅传递接受的参数值的方法

转载 作者:行者123 更新时间:2023-11-30 13:36:17 24 4
gpt4 key购买 nike

假设采用以下方法:

int ExtractMedian(int Statistic)
{
return ExtractionWork;
}

是否可以通过使用 ref 来强制 Statistic 只接受像 1, 3, 5 这样的奇数,但不检查传递后的值?

最佳答案

Is it possible to force Statistic to accept only odd numbers like 1, 3, 5 by using ref for example but without checking the value after it is passed?

不,我不这么认为。

我会简单地在方法开始时检查:

int ExtractMedian(int Statistic)
{
if(Statistic % 2 == 0)
throw new ArgumentException("Statistic must be odd");

return ExtractionWork;
}

关于c# - 仅传递接受的参数值的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36527488/

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