我有这样的东西
bool a = true;
bool b = true;
bool plot = true;
if(plot)
{
if(a)
{
if(b)
b = false;
else
b = true;
//do some meaningful stuff here
}
//some more stuff here that needs to be executed
}
我想打破当 b 变为假时测试 a 的 if 语句。有点像循环中断和继续。有任何想法吗?编辑:抱歉忘记包含大 if 语句。我想在 b 为假时突破 if(a) 但不突破 if(plot)。