0

显然我在这里遗漏了一些基本的东西。我有一个函数,其中在各种 if 语句中的函数中都有返回语句。这样做的好处显然可以辩论,但我遇到了我不熟悉的情况。

我通过断点跟踪我的程序的执行,并注意到它正常执行返回语句。但是,在到达该语句后,它会跳过函数的其余部分并转到函数底部的 return 语句并返回坐在那里的值。这是代码片段,它有数百行长,所以我不想发布整个内容,只是我跟踪它的部分:

public Location getBestLocation(Context c){ //the header

else if(gps_enabled && passive_enabled && !network_enabled){
        if(hGPSLast != null && hPassive != null){
            if(hGPSLast.getTime() > hPassive.getTime() && System.currentTimeMillis() - hGPSLast.getTime() < 300000){
                return hGPSLast; 
            }else if(hPassive.getTime() > hGPSLast.getTime() && System.currentTimeMillis() - hPassive.getTime() < 300000){
                return hPassive; 
            }else{
                hGPSBest = getGPSloc(c);
                if(hGPSBest.getTime() == hGPSLast.getTime()){
                    if(hPassive.getTime() > hGPSLast.getTime()){
                        return hPassive; 
                    }else{
                        return hGPSLast; 
                    }
                }else{
                    return hGPSBest; 
                }
            }
        }else if(hGPSLast != null && hPassive == null){
            if(System.currentTimeMillis() - hGPSLast.getTime() <300000){
                return hGPSLast; 
            }else{
                hGPSBest = getGPSloc(c);
                return hGPSBest; 
            }
        }else if(hPassive != null && hGPSLast == null){
            if(System.currentTimeMillis() - hPassive.getTime() < 300000){
                return hPassive; 
            }else{
                hGPSBest = getGPSloc(c);
                if(hGPSBest != null){
                    return hGPSBest;
                }else{
                    return hPassive; 
                }
            }
        }

达到了身体那部分的一个回报,但是代码跳到我有这个的最底部:

    Criteria criteria = new Criteria();
    String best = lm.getBestProvider(criteria, true);
    //since you are using true as the second parameter, you will only get the best of providers which are enabled.
    def = lm.getLastKnownLocation(best);
    return def;

代码返回“def”,我将其定义为空白持有人 Location 对象,如果由于某种原因没有达到正文中的任何返回,我希望它会被其上方的代码填充。我在这里想念什么?

4

1 回答 1

4

命令立即忽略所有剩余的return方法代码并退出它所在的当前方法。它将立即返回调用该方法本身的前一个函数。

例如:

if(hPassive.getTime() > hGPSLast.getTime()){
    return hPassive; 
}else{
    return hGPSLast; 
}

可以改写为

if(hPassive.getTime() > hGPSLast.getTime()){
    return hPassive; 
}

return hGPSLast;

该方法将始终返回两者中的任何一个并跳过剩余的代码。

于 2013-08-04T21:27:48.350 回答