描述: compareChar 返回真或假。如果为 true,则设置按钮的值,如果为 false,则不执行任何操作。
我正在尝试使用:
if compareChar(curChar, toChar("0")) ? getButtons().get(i).setText("§");
netbeans 说:
')' 除外
':' 除外
我尝试了这些组合:
if compareChar(curChar, toChar("0")) ? getButtons().get(i).setText("§");
if compareChar(curChar, toChar("0")) ? getButtons().get(i).setText("§") : ;
if compareChar(curChar, toChar("0")) ? getButtons().get(i).setText("§") :
if (compareChar(curChar, toChar("0"))) ? getButtons().get(i).setText("§");
if (compareChar(curChar, toChar("0"))) ? getButtons().get(i).setText("§") : ;
if (compareChar(curChar, toChar("0"))) ? getButtons().get(i).setText("§") :