This method must return a result of type boolean(Java)(此方法必须返回 boolean(Java) 类型的结果)
问题描述
这是我的代码.
boolean checkHit2() {
if (cx < 0 || cx >= 640) {return true;}
if (cy < ground[(int)cx]) {return false;}
if (cx < blue + 15 && cx > blue - 15) {
score = (int)score + 1;
我做错了什么?它给了我错误消息此方法必须返回布尔类型的结果".请帮忙.
What am I doing wrong? it gives me the error message "This method must return a result of type boolean". Please help.
推荐答案
此方法必须返回布尔类型的结果"
"This method must return a result of type boolean"
意味着您的方法应该为每个案例返回boolean值.目前,如果您的 if 条件之一是 true,它将返回 boolean.如果你的 if 条件都不是 true 怎么办?在这种情况下,编译器将无法向方法的调用者返回任何内容.因此,无论条件是否满足,编译器都会告诉您为每种情况的方法添加一个 return 语句.您应该在方法末尾添加 return false.
Means your method should return the boolean value for every case. Currently it will return boolean if one of your if condition is true. What about if none of your if condition is true? In this case compiler will not be able to return anything to the caller of the method. So that compiler is telling you to add a return statement for method for every case no matter condition satisfy or not. You should add return false at the end of the method.
这篇关于此方法必须返回 boolean(Java) 类型的结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:此方法必须返回 boolean(Java) 类型的结果
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
