forked from xy2401/local-doc-java-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (69 loc) · 2.34 KB
/
index.html
File metadata and controls
74 lines (69 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<html>
<head>
<title>Arbitrary Precision Math</title>
</head>
<body bgcolor=white>
<table summary="layout" border="0" width="100%"><tr>
<td width=60>
<img src="../../images/javalogo52x88.gif" alt="Java" width=52 height=88>
</td>
<td>
<center>
<h1>Arbitrary-Precision Math</h1>
</center>
</td>
<td align=right valign=top>
<small><a href="../../index.html">Documentation Contents</a></small>
</td>
</tr></table>
<!-- Body text begins here -->
<blockquote>
The <code>java.math</code> package supports arbitrary-precision math.
The package consists of two classes:
<ul>
<li><code>BigInteger</code> numbers are immutable,
arbitrary-precision integers. The <code>BigInteger</code> class
provides analogs for all Java language primitive integer operators.
The class also supports modular arithmetic, GCD calculation, prime
number generation and testing, single-bit manipulation, and various
other operations.
<li><code>BigDecimal</code> numbers are immutable,
arbitrary-precision signed decimal numbers, suitable for monetary
calculations. The <code>BigDecimal</code> class provides operations
for basic arithmetic, scale manipulation, comparison, format
conversion, and hashing.
</ul>
</blockquote>
<font size="+2"><b>Enhancements</b></font><br>
<ul>
<li><a href=enhancements14.html>Enhancements to <tt>java.math</tt></a>
in version 1.4 of the Java<sup><font size=-2>TM</font></sup> 2 SDK.
<li><a href=enhancements.html>Enhancements to <tt>java.math</tt></a>
in version 1.3 of the Java 2 SDK.
</ul>
<font size="+2"><b>API Specification</b></font><br>
<ul>
<li><a href=../../api/java/math/package-summary.html><b>java.math
Package</b><a>
</ul>
<!-- Body text ends here -->
<!-- ============================================================== -->
<hr size=3 noshade>
<table summary="layout" border="0" width=100%>
<tr valign=top>
<td> <small><small>
<a href="../../relnotes/SMICopyright.html">Copyright ©</a> 2002
<a href="http://www.sun.com/">Sun Microsystems, Inc.</a>
All Rights Reserved.</small>
<p>
</small></td>
<td align=right>
<img src="../../images/sunlogo64x30.gif" alt=" Sun Microsystems, Inc " width=64 height=30>
<br>
<big><i>Java Software</i></big>
</td>
</tr>
</table>
</body>
</html>