在颤振中,我尝试调用:_addfromInteger

时间:2021-05-11 08:55:57

标签: flutter dart

void _resetQuiz() {
        setState(() {
          _questionIndex = 0;
          _totalScore = 0;
        });
      }

      void answerQuestion(score) {
        _totalScore += score;
        setState(() {

          _questionIndex += 1;
        });
        print(_questionIndex);
        print(_totalScore);
        print("Answer chosen !%n");
      }

下面是我的代码。我想知道主要的原因。

这是代码

this is the code

1 个答案:

答案 0 :(得分:0)

此问题是由于使用了非初始化变量 => null 引起的: class _MyAppState extends State<MyApp> { int _questionIndex = 0; int _totalScore = 0; int _score ; <---------- score = null