我正在尝试创建一个静态布尔方法,该方法传递一个对象数组,如果该数组包含至少一个空对象,则返回 true。
这是我的代码,但它不接受它,说有编译错误。
public static boolean anyEmptyObject(object[] objects){
for(int k = 0;k<object.length; k++){
if (objects[k].getEmpty()==true){
return true;}
else {return false;}
}
}
(getEmpty 已经是一个声明的方法,如果对象为空则返回)
不知道我的错误在哪里,因为它看起来没问题?可能是我的括号?
错误只是
The system has detected compilation errors. This could be caused by:
Missing semicolon ; at the end of a statement.
Unclosed braces {}.
Unclosed parentheses ().
Unterminated string literals "".
Invalid method signature.
Missing return statement.
Redeclared variable or data member.
etc.