有什么方法可以return;
从内部函数返回外部函数的值(或只是)?
我的问题类似于这个问题: Breaking out of nested loops in Java,但不同的是,在这个问题中,提问者询问了如何在嵌套循环中打破外部循环,而我询问是否返回嵌套函数中的外部函数。
public void outerFunction ()
{
runOnUiThread (new Runnable()
{
@Override
public void run ()
{
// Here i want to return;, so the function will not continue after runOnUiThread
}
});
// Code here should not run.
}