gpt4 book ai didi

c# - 比较 3 个以上变量的值的简单方法?

转载 作者:太空狗 更新时间:2023-10-29 23:55:22 26 4
gpt4 key购买 nike

我想检查这些变量是否具有相同的值。

示例:

int a = 5;
int b = 5;
int c = 5;
int d = 5;
int e = 5;
. . .
int k = 5;

if(a==b && b==c && c==d && d==e && .... && j==k)
{
//this is Complex way and not well understandable.
}

有什么比较简单的方法吗?
在下面的例子中点赞

if(a==b==c==d==e.....j==k)
{
//Understandable but not work
}

最佳答案

这样的事情怎么样:

if (Array.TrueForAll<int>(new int[] {a, b, c, d, e, f, g, h, i, j, k },
val => (a == val))) {
// do something
}

关于c# - 比较 3 个以上变量的值的简单方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5188827/

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