我有这样的代码:
public void Method()
{
if(something)
{
//some code
if(something2)
{
now I should break from ifs and go to te code outside ifs
}
return;
}
// The code i want to go if the second if is true
}
我想知道是否有可能在不使用任何goto语句或将其余代码提取到其他方法的ifs之后转到该代码。
更新
是的,我知道其他;) 但是这段代码很长,如果第一个IF为假,第一个IF为真,第二个为假,则应该运行。 所以提取方法我认为是最好的想法
答案 0 :(得分:14)
回答你的问题:
public void Method()
{
while(true){
if(something)
{
//some code
if(something2)
{
break;
}
return;
}
break;
}
// The code i want to go if the second if is true
}
答案 1 :(得分:8)
这是我几年前学到的东西的变体。显然,这在C ++开发人员中很受欢迎。
首先,我想我知道你为什么要打破IF块。对我来说,我不喜欢一堆嵌套的块,因为1)它使代码看起来很混乱2)如果你必须移动逻辑,它可以是一个pia来维护。
请考虑使用do/while
循环:
public void Method()
{
bool something = true, something2 = false;
do
{
if (!something) break;
if (something2) break;
} while (false);
}
由于硬编码do/while
条件,false
循环保证仅像IF块一样运行一次。如果您想提前退出,只需break
。
答案 2 :(得分:7)
您可以使用goto删除一些代码。在示例中,如果thing1为true,则绕过thing2的检查。
if (something) {
do_stuff();
if (thing1) {
do_thing1();
goto SkipToEnd;
}
if (thing2) {
do_thing2();
}
SkipToEnd:
do_thing3();
}
答案 3 :(得分:4)
使用else
:
if(something)
{
//some code
if(something2)
{
// now I should break from ifs and go to te code outside ifs
}
else return;
}
// The code i want to go if the second if is true
答案 4 :(得分:4)
public void Method()
{
if(something)
{
//some code
if(something2)
{
// now I should break from ifs and go to te code outside ifs
goto done;
}
return;
}
// The code i want to go if the second if is true
done: // etc.
}
答案 5 :(得分:2)
在这种情况下,请插入一个else
:
public void Method()
{
if(something)
{
// some code
if(something2)
{
// now I should break from ifs and go to te code outside ifs
}
else return;
}
// The code i want to go if the second if is true
}
通常:break
序列中没有if/else
,只需在if / if else / else
子句中正确排列代码。
答案 6 :(得分:2)
public void Method()
{
if(something)
{
//some code
if(!something2)
{
return;
}
}
// The code i want to go if the second if is true
}
答案 7 :(得分:1)
public void Method()
{
if(something)
{
//some code
if(something2)
{
// The code i want to go if the second if is true
}
return;
}
}
答案 8 :(得分:1)
只有在return
或使用!something2
时才能else return
:
public void Method()
{
if(something)
{
//some code
if(something2)
{
//now I should break from ifs and go to te code outside ifs
}
if(!something2) // or else
return;
}
// The code i want to go if the second if is true
}
答案 9 :(得分:1)
在您的代码示例中,您应该简单地在第二个 if 内的 ifs 之后运行代码(或根据上下文设置一个像其他人提到的标志)。使用方法调用来提高可读性并减少嵌套。
至于实际转义 if,我认为有一种方法比我在这里看到的答案更符合 C# 标准。只需将 if 语句的内容提取到单独的方法中即可。这也增加了可读性。所以:
flake8
这可以这样完成:
public void Method()
{
if(something)
{
//some code
if (somethingelse)
{
//break if
}
//some other code running if the above if didn't trigger
}
}
答案 10 :(得分:0)
尝试添加控制变量:
public void Method()
{
bool doSomethingElse = true;
if(something)
{
//some code
if(!something2)
{
doSomethingElse = false;
}
}
if(doSomethingElse)
{
// The code i want to go if the second if is true
}
}
答案 11 :(得分:0)
只想添加另一个变体来更新此奇妙的“操作方法”列表。不过,在更复杂的情况下它可能确实有用:
try {
if (something)
{
//some code
if (something2)
{
throw new Exception("Weird-01.");
// now You will go to the catch statement
}
if (something3)
{
throw new Exception("Weird-02.");
// now You will go to the catch statement
}
//some code
return;
}
}
catch (Exception ex)
{
Console.WriteLine(ex); // you will get your Weird-01 or Weird-02 here
}
// The code i want to go if the second or third if is true
答案 12 :(得分:0)
我想我知道为什么人们会想要这个。 “如果所有条件都为真,则运行东西,否则运行其他东西”。而且条件太复杂,无法放入一个if
。
只需使用一种方法!
private bool TheCheck()
{
if (something1)
{
//calculate something2
if (something2)
{
//calculate something3
if (something3)
{
return true;
}
}
}
return false;
}
//and then somewhere in your code
if (TheCheck())
{
DoStuff();
}
现在,您甚至可以将TheCheck
包装为内联委托,这更酷
if (new Func<bool>(() =>
{
if (something1)
{
if (something2)
{
return true;
}
}
return false;
})())
{
//do stuff
}
答案 13 :(得分:0)
从c#7.0开始的另一种方法是使用局部函数。您可以使用有意义的名称来命名本地函数,并在声明之前直接调用它(为清楚起见)。这是您的示例重写:
public void Method()
{
// Some code here
bool something = true, something2 = true;
DoSomething();
void DoSomething()
{
if (something)
{
//some code
if (something2)
{
// now I should break from ifs and go to te code outside ifs
return;
}
return;
}
}
// The code i want to go if the second if is true
// More code here
}