を使用compareTo
する場合BigInteger
、どの関数を呼び出すかを結果からどのように選択できますか?(-1 = funcA、+ 1 = funcB、0 =関数なし)。
特に:これの何が問題になっていますか?
doCompare() {
BigInteger x = new BigInteger(5);
BigInteger y = new BigInteger(10);
//syntax error token "<", invalid assignment operator
x.compareTo(y) < 0 ? funcA() : funcB();
}
void funcA();
void funcB();