当前位置:  开发笔记 > 编程语言 > 正文

如果bool数组中的所有元素都为真?

如何解决《如果bool数组中的所有元素都为真?》经验,为你挑选了2个好方法。

我在使用这个array.All<>功能时遇到了困难.

private bool noBricksLeft() {
    bool[] dead = new bool[brick.Length];

    for (int i = 0; i < brick.GetLength(0); i++) {
        if (brickLocation[i, 2] == 0)
            dead[i] = true;
        else
            continue; // move onto the next brick
    }

    if (dead.All(dead[] == true)) // IF ALL OF THE ELEMENTS ARE TRUE
        return true;
    else
        return false;
}

我想知道我怎么能实现if (dead.All(dead[] == true))



1> Willem Van O..:

你可以简单地使用lambda表达式:

if (dead.All(x => x))

鉴于你using System.LinqIEnumerable.All方法.

会做的.此外if,返回答案的语句是无用的,因此您可以将其重写为:

private bool noBricksLeft() {
    bool[] dead = new bool[brick.Length];

    for (int i = 0; i < brick.GetLength(0); i++) {
        if (brickLocation[i, 2] == 0)
            dead[i] = true;
        else
            continue; //move onto the next brick
    }

    return dead.All(x => x);
}

另一个想法,部分借鉴@royhowie如下:

private bool noBricksLeft() {
    return Enumerable.Range(0,brick.Length).All(i => brickLocation[i,2] == 0);
}



2> royhowie..:

是的,你可以使用.All,但你的代码仍然不是很好.据我所知,您可以像这样重写代码,而无需使用数组:

private bool noBricksLeft () {
    for (int i = 0; i < brick.GetLength(0); i++) {
        // inverted your condition; we can short-circuit
        // and just return false
        if (brickLocation[i, 2] != 0)
            return false;
    }
    // every brick passed our condition, so return true
    return true;
}


虽然我和CommuSoft的答案集中在使用all的正确语法上,但您的答案对于指导OP正确编写其方法的方法也很有用.+1给你的答案:)
推荐阅读
喜生-Da
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有