5

如果“if”语句为真,我该怎么做才能跳过foreach循环下面的代码并继续执行程序的其余部分

void()
{
    foreach()
    {
        if()
        {

        }
    }

    //code I want to skip if "if" statement is true

}
4

8 回答 8

7

没有办法直接做你想做的事(没有“goto”标签——别想了!),但你可以使用“break”关键字,并设置一个稍后可以参考的变量。

void()
{
    var testWasTrue = false;
    foreach()
    {
        if()
        {
            testWasTrue = true;
            break;  // break out of the "foreach"
        }
    }

    if( !testWasTrue ) {
        //code I want to skip if "if" statement is true
    }

}
于 2012-06-19T23:33:51.963 回答
3

我知道这已经得到解答,但我想我会投入 2 美分,因为没有人考虑将支票抽象为单独的方法:

void()
{
    if (ShouldDoStuff(myCollection))
        DoStuff(myCollection);
    else
        DoOtherStuff(myCollection);
}

private bool ShouldDoStuff(collection)
{
    foreach()
    {
        if ()
            return true;
    }
    return false;
}

这在更高级别提供了更清晰的代码来处理您的算法,并消除了讨论的所有混乱。它将检查和执行动作的任务清晰地分开void(),读者可以立即确切地知道程序流程是什么,而无需通过潜伏的布尔或中断逻辑来辨别他们在做什么。没有一种方法具有超过一项职责或任务。

是的,发帖人可能想在他们的 foreach 中做其他工作,但这是一个完全不同的讨论,而不是他们问题中描述的内容。如果您只是想检查给定的集合(或对象)是否满足某个条件,则可以将该检查移至单独的方法。甚至为所有三个组件的自动化单元测试敞开大门。

即使DoStuffDoOtherStuff没有抽象为它们自己的方法,它也提供了更好的可读性和逻辑流程。

于 2012-06-20T01:40:40.343 回答
1

'break' 关键字将跳出循环。

foreach (someClass a in someArray) 
{
  if(a.someProperty) // bool property 
  {
    //Stuff to do if that condition is true
    doSomethingElse();
    //Calling the break keyword will stop the loop and jump immediately outside of it
    break;
  }
  //Other code to run for each iteration of the loop
}

//Here is where execution will pick up either after break is called or after the loop finishes
于 2012-06-19T23:33:04.490 回答
1
void()
{
     bool process = true;
     foreach()
     {
          if()
          {
              process = false;
              break;
          }
     }

     if (process)
     {
       //code I want to skip if "if" statement is true
     }

}
于 2012-06-19T23:36:13.507 回答
1

正如我在评论中提到的,您可以通过额外的 bool 变量来做到这一点。

void()
    {
        bool positiveResult; // by default it gets false value
        foreach()
        {
            if()
            {
                positiveResult = true;
                // you may use "break" to skip the loop
                break;
            }
        }

        if( !positiveResult  ) 
         {
            //code I want to skip if "if" statement is true
         }

    }
于 2012-06-19T23:38:20.293 回答
0
void() 
{ 
    bool skip = false;
    foreach() 
    { 
        if() 
        { 
           skip = true;
        } 
    } 

    if(!skip)
    {
        //code I want to skip if "if" statement is true 
    }
} 
于 2012-06-19T23:31:33.357 回答
0

只有我知道布尔标志是怎样的。

void()
{
  bool x = false;
  foreach()
  {
    if()
    {
      x = true;
      break;
    }
  }
  if(!x)
  {
    //Code to skip if "if" statement is true.
  }
}

不是超级优雅,但很容易。编辑:节拍 12 秒 :)

于 2012-06-19T23:34:04.163 回答
0

如果您正在迭代的集合包含 IEnumerable 接口,您可以将 Any() 与 Lambda 一起使用!

int[] myArray = { 1, 2, 3 };

                if( myArray.Any((a) => a == 1) )
                {
                    return;
                }

读取:如果我的数组包含任何值 a ,其中 a 等于 1,则从该函数返回。

另外,如果你想让它更难阅读,你可以省略花括号/方括号。

if( myArray.Any((a) => a == 1) )
     return;
于 2019-08-30T15:58:04.843 回答