Mathematics operations are an important part of computing. You learned about basic math operators (such as addition and multiplication) in Chapter 3. Java also provides a Math class in the java.lang package, along with BigDecimal and BigInteger classes in the java.math package. This chapter introduces you to these classes.
Math
The Math class augments the basic math operators with useful static constants and methods. This section presents these constants and explores a few of these methods.
You might be ...