Why am I getting a “cannot find symbol” error in my java program when I compile?

后端 未结 2 1363
死守一世寂寞
死守一世寂寞 2021-01-26 13:31

I am trying to return the value of my boolean variable localFound at the end of my code but when I compile, I get an error that says it cannot find the symbol. I know this is a

2条回答
  •  再見小時候
    2021-01-26 14:00

    localFound is not defined in the scope of your return statement. It only exists within your if statement.

    Move the declaration outside of your if statement, and initialize it to some default value, such as false.

提交回复
热议问题