public void onClickBackQuestion(View paramView)
{
if (this.question_number > 0)
{
if (!this.testType.equalsIgnoreCase("test"))
break label93;
if (this.backQuestionList.size() > 1)
{
this.question_number = ((Integer)this.backQuestionList.get(-2 + this.backQuestionList.size())).intValue();
setQuestion(this.question_number);
this.backQuestionList.remove(-1 + this.backQuestionList.size());
}
}
return;
label93:
int i = -1 + this.question_number;
this.question_number = i;
setQuestion(i);
}
在上面我想检查testType
是否等于test
的情况
然后我想打破并继续label93
但是
我在声明i
变量时遇到错误。
请帮我解决问题。提前致谢