java.math

Java Source Code / Java Documentation
1. JDK Core
2. JDK Modules
3. JDK Modules com.sun
4. JDK Modules com.sun.java
5. JDK Modules Platform
6. JDK Modules sun
7. Open Source Build
8. Open Source Graphic Library
9. Open Source IDE Eclipse
10. Open Source J2EE
11. Open Source JDBC Driver
12. Open Source Library
13. Open Source Library Database
14. Open Source Net
15. Open Source Script
16. Science
17. Security
18. Sevlet Container
19. SUN GlassFish
20. Swing Library
21. Web Services apache cxf 2.0.1
22. Web Services AXIS2
23. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java Source Code / Java Documentation » JDK Core » math » java.math 
java.math
Provides classes for performing arbitrary-precision integer arithmetic ( BigInteger ) and arbitrary-precision decimal arithmetic ( BigDecimal ).
Java Source File NameTypeComment
BigDecimal.javaClass Immutable, arbitrary-precision signed decimal numbers.
BigInteger.javaClass Immutable arbitrary-precision integers.
BitSieve.javaClass A simple bit sieve used for finding prime number candidates.
MathContext.javaClass Immutable objects which encapsulate the context settings which describe certain rules for numerical operators, such as those implemented by the BigDecimal class.

The base-independent settings are:

  1. precision : the number of digits to be used for an operation; results are rounded to this precision
  2. roundingMode : a RoundingMode object which specifies the algorithm to be used for rounding.

See Also:   BigDecimal
See Also:   RoundingMode
author:
   Mike Cowlishaw
author:
   Joseph D.
MutableBigInteger.javaClass A class used to represent multiprecision integers that makes efficient use of allocated space by allowing a number to occupy only part of an array so that the arrays do not have to be reallocated as often. When performing an operation with many iterations the array used to hold a number is only reallocated when necessary and does not have to be the same size as the number it represents.
package-info.java
RoundingMode.javaenum Specifies a rounding behavior for numerical operations capable of discarding precision.
SignedMutableBigInteger.javaClass A class used to represent multiprecision integers that makes efficient use of allocated space by allowing a number to occupy only part of an array so that the arrays do not have to be reallocated as often. When performing an operation with many iterations the array used to hold a number is only increased when necessary and does not have to be the same size as the number it represents.
w_w___w__.j_av__a___2_s_._c__o__m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.