無法弄清楚如何編寫我的方法,我嘗試的任何操作都會給我編譯錯誤。總之,我需要我的方法遍歷我傳遞下來的布爾數組。瞭解False是否連續出現,或者True是否連續出現。在我提供的False數組中出現了更多的連續性,因此它應該將false返回給main。我現在完全失去了任何提示?Boolean在方法中返回True或False
public class booleanTF
{
public static void main(String [] args)
{
boolean[] guess = {false,true,false,false,false,true,true};
}
public static boolean longerTF(boolean[] guess)
{
int variable = 0;
for(int x = 0; x < guess.length; x++)
{
if(guess[x]
}
}
請參考[遊覽],學習http://stackoverflow.com/help/how-to-ask並製作[mcve]。 – Yunnosch
可能[複製](http://stackoverflow.com/questions/43509871/boolean-array-passed-to-method-to-return-true-or-false) –
所以你不會包括編譯錯誤? – John3136