Pregunta

I have a biginteger number, say

BigInteger a=Biginteger.valueOf(50);

Besides the following

BigInteger a=(BigInteger.ZERO).subtract(BigInteger.valueOf(50));

is there another way to get the negative value of my number? Can't seem to find a method.

¿Fue útil?

Solución

You're looking for BigInteger's negate() method.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top