Math类

Posted sx-wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math类相关的知识,希望对你有一定的参考价值。

在java中关于数学一类,将它们封装成了Math类。(Math 类包含用于执行基本数学运算的方法,如初等指数、对数、平方根和三角函数)包含了大量的关于数学的静态方法

Math中常用的静态方法方法

 1 package ClassTest;
 2 
 3 /**
 4  * @author Sx-Wang
 5  * @data 2020-06-07 23:50
 6  */
 7 public class MathTest {
 8     public static void main (String[] args) {
 9         System.out.println(Math.random());// 返回带正号的 double 值,该值大于等于 0.0 且小于 1.0。
10         System.out.println(Math.abs(1));// 返回 double 值的绝对值。与他相关的还有很多重载方法
11         System.out.println(Math.ceil(1.5));// ceil(double num) 向上取整
12         System.out.println(Math.floor(1.5));// floor(double num) 向下取整数
13         System.out.println(Math.round(1.5));// round(double num) 四舍五入
14         // 其中还有一些常量
15         System.out.println(Math.E);// 比任何其他值都更接近 e(即自然对数的底数)的 double 值。
16         System.out.println(Math.PI);// 比任何其他值都更接近 pi(即圆的周长与直径之比)的 double 值。
17 
18     }
19 }

以上是关于Math类的主要内容,如果未能解决你的问题,请参考以下文章

如何通过单击片段内的线性布局从片段类开始新活动?下面是我的代码,但这不起作用

如何将数组中的类随机分配给for循环中创建的元素

Java ——Number & Math 类 装箱 拆箱 代码块

elasticsearch代码片段,及工具类SearchEsUtil.java

工具类:Math

Android 逆向类加载器 ClassLoader ( 类加载器源码简介 | BaseDexClassLoader | DexClassLoader | PathClassLoader )(代码片段