新聞中心
這篇文章給大家介紹java中Math數(shù)學(xué)工具類(lèi)的作用是什么,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
成都創(chuàng)新互聯(lián)公司是一家專(zhuān)業(yè)提供內(nèi)蒙古企業(yè)網(wǎng)站建設(shè),專(zhuān)注與成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、成都h5網(wǎng)站建設(shè)、小程序制作等業(yè)務(wù)。10年已為內(nèi)蒙古眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專(zhuān)業(yè)的建站公司優(yōu)惠進(jìn)行中。
1. 概述
java.util.Math類(lèi)是數(shù)學(xué)相關(guān)的工具類(lèi),里面提供了大量的靜態(tài)方法,完成與數(shù)學(xué)運(yùn)算相關(guān)的操作。
2. 基本的方法
public static double abs(double num);獲取絕對(duì)值。有多種重載,absolutely絕對(duì)地 public static double ceil(double num);向上取整,ceil是天花板的意思 public static double floor(double num);向下取整,floor是地板的意思 public static long round(double num);四舍六入五成雙(看下面代碼的注釋?zhuān)?,round有大約,完整的意思
3. 四種方法一起通過(guò)代碼演示一遍
public class MathMethod { public static void main(String[] args) { //abs方法,取絕對(duì)值 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方法,四舍 六入 五成雙 //先看看四舍六入,如果出現(xiàn)負(fù)數(shù),先轉(zhuǎn)成正數(shù),再四舍六入,最后加上負(fù)號(hào) System.out.println(Math.round(3.4)); //3 System.out.println(Math.round(3.6)); //4 System.out.println(Math.round(-3.4)); //-3 System.out.println(Math.round(-3.6)); //-4 //五成雙是什么意思呢?當(dāng)出現(xiàn)0.5結(jié)尾的時(shí)候,就給它再加上+0.5,5不就成雙了 //接著再對(duì)相加的結(jié)果進(jìn)行floor運(yùn)算 System.out.println(Math.round(-2.5)); //-2 System.out.println(Math.floor(-2.5 + 0.5)); //與Math.round(-2.5)結(jié)果一致 System.out.println(Math.round(2.5)); //3 System.out.println(Math.floor(2.5 + 0.5)); //與Math.round(2.5)結(jié)果一致 } }
4. 圓周率Math.PI
在Math類(lèi)的源碼中,我們可以看到,它自定義的圓周率 PI = 3.14159265358979323846
以后的計(jì)算如果需要用到PI,盡量用已經(jīng)定義好的圓周率,非常精確
關(guān)于java中Math數(shù)學(xué)工具類(lèi)的作用是什么就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
當(dāng)前文章:java中Math數(shù)學(xué)工具類(lèi)的作用是什么
當(dāng)前網(wǎng)址:http://fisionsoft.com.cn/article/pgoddi.html