• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

How to use the BigInteger constructor and method?

It should be something like:
BigIntger x = new BigInteger("-123456789012345678901234567890");
BigInteger absX = x.abs();
float floatX = x.floatValue();


simple
 
Any particular public method you're confused about? The Javadoc for BigInteger, as you have quoted in your post explains everything related to this class.
 
Back
Top Bottom