首页 > 代码库 > java unreachable code不可达代码
java unreachable code不可达代码
例子:
static int test(int testval) {
int target = 1;
if (testval > target)
System.out.println(1);
return -1;(下边是永远不会达到的代码,所以编译器提示错误(unreachable code))
if (testval < target)
return +1;
return 0; // match
}、
修改为让return -1 与上边的if为一体的就行,修改如下:
static int test(int testval) {
int target = 1;
if (testval > target)
return -1;
if (testval < target)
return +1;
return 0; // match
}
或者这样直接输出:
static int test(int testval) {
int target = 1;
if (testval > target)
System.out.println(1);
if (testval < target)
return +1;
return 0; // match
}
注:始终遵循着if if 条件判断原则,上边那个满足就不在执行下边的代码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。