美文网首页
java中数学工具类Math

java中数学工具类Math

作者: 浅时光_love | 来源:发表于2019-08-25 00:01 被阅读0次

数学工具类Math

1. 概述

java.util.Math类是数学相关的工具类,里面提供了大量的静态方法,完成与数学运算相关的操作。

2. 基本的方法

public static double abs(double num);获取绝对值。有多种重载,absolutely绝对地

public static double ceil(double num);向上取整,ceil是天花板的意思

public static double floor(double num);向下取整,floor是地板的意思

public static long round(double num);四舍五入,round有大约,完整的意思

1

2

3

4

3. 四种方法一起通过代码演示一遍

public class MathMethod {

    public static void main(String[] args) {

        //abs方法,取绝对值

        System.out.println(Math.abs(3.14)); //3.14

        System.out.println(Math.abs(0));    //0

        System.out.println(Math.abs(-2.2)); //2.2

        System.out.println("---------------------");

        //ceil方法,向上取整,往大的靠

        System.out.println(Math.ceil(3.2));  //4.0

        System.out.println(Math.ceil(3.8));  //4.0

        System.out.println(Math.ceil(-3.2)); //-3.0

        System.out.println(Math.ceil(-3.8)); //-3.0

        System.out.println("---------------------");

       

        //floor方法,向下取整,往小的靠

        System.out.println(Math.floor(3.2));  //3.0

        System.out.println(Math.floor(3.8));  //3.0

        System.out.println(Math.floor(-3.2)); //-4.0

        System.out.println(Math.floor(-3.8)); //-4.0

        System.out.println("---------------------");

        //round方法,四舍五入,往边缘的靠

        System.out.println(Math.round(3.2));  //3

        System.out.println(Math.round(3.8));  //4

        System.out.println(Math.round(-3.2)); //-3

        System.out.println(Math.round(-3.8)); //-4

    }

}

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

4. 圆周率Math.PI

在Math类的源码中,我们可以看到,它自定义的圆周率 PI = 3.14159265358979323846

以后的计算如果需要用到PI,尽量用已经定义好的圆周率,非常精确

相关文章

  • java中数学工具类Math

    数学工具类Math 1. 概述 java.util.Math类是数学相关的工具类,里面提供了大量的静态方法,完成与...

  • Java中 使用 Math 类操作数据

    使用 Math 类操作数据 Math 类位于 java.lang 包中,包含用于执行基本数学运算的方法, Math...

  • Java基础类库

    包 1、java.lang包:java类库中的核心部分,包含System系统类、数学运算的Math类、处理字符串的...

  • java 数学计算

    java 数学计算 java.lang.Math 库提供了常用的数学计算工具 常量 取整 abs(x): 绝对值 ...

  • Java Math工具类

    1、Math.pow(x,y); 返回x的y次幂 2、Math.abs(x); 返回x的绝对值 3、Math.ra...

  • 工具类不应该有公有的构造函数

    java 项目中使用的工具类非常多,比如JDK自己的工具java.lang.Math 、java.util.Col...

  • JAVA(12)数字

    Math 类封装了常用的数学运算,提供了基本的数学操作,如指数、对数、平方根和三角函数等Math 类位于 java...

  • Java自学-数字与字符串 数学方法

    Java Math类常用方法 java.lang.Math提供了一些常用的数学运算方法,并且都是以静态方法的形式存...

  • 常用类库

    一、java.lang object 类数学类(Math)数据类型类线程类字符串类(String 和 String...

  • Java API(下)

    Math类和Random类 Math类 Math类是数学操作类,提供了一系列用于数学运算的静态方法,包括求绝对值、...

网友评论

      本文标题:java中数学工具类Math

      本文链接:https://www.haomeiwen.com/subject/eyvcectx.html