The local variable xxx is never read

后端 未结 6 1650
不思量自难忘°
不思量自难忘° 2021-01-29 13:24

This is my code:

boolean startGameBoolean;
Bundle extras = getIntent().getExtras();
extras.getInt(\"startGameBoolean\");
if (startGameBoolean = true){
    counte         


        
6条回答
  •  面向向阳花
    2021-01-29 14:05

    if (startGameBoolean = true){
    

    Should be..

    if (startGameBoolean == true){
    

    ..or better still..

    if (startGameBoolean){
    

提交回复
热议问题