我的 if 语句中有一个带有 break 语句的方法。该方法在一个while循环中。如果我在方法的 if 语句中使用 break 或者我必须使用嵌套循环,它会跳出 while 循环吗?
public int x=0;public int y=0;
public boolean endCondition = true;
public void someMethod()
{
if(x!=y) {//do something}
else break;
}
while(endCondition==true)
{
this.someMethod();
}
System.out.println("Bloke");