説明: compareCharはtrueまたはfalseを返します。 trueの場合はボタンの値を設定し、falseの場合は何もしません。インラインifステートメントjava、なぜ動作していません
私は使用しようとしています: 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("§") :
が
「場合」を出したままにギヨームありがとう、これは利用可能な答えを理解するのが最も簡単です。.. –