我提取了某人的 APK(Android 应用程序)来查看 Java 源代码,并看到了很多return;
代码,甚至在void
方法上也是如此。
例如:
public void doSomething(){
do{
return; //This line makes the code below unreachable and can't compile in Eclipse
switch(num){
...
default:
return;
}
}while(...)
...
}
为什么应用程序在我的手机上运行良好?
我想return;
这就像打破方法的捷径。是对的吗?