説明: compareChar は true または false を返します。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("§") :