溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用java數(shù)學工具類Math

發(fā)布時間:2021-11-19 16:07:24 來源:億速云 閱讀:173 作者:iii 欄目:編程語言

這篇文章主要介紹“怎么使用java數(shù)學工具類Math”,在日常操作中,相信很多人在怎么使用java數(shù)學工具類Math問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么使用java數(shù)學工具類Math”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

1. 概述

java.util.Math類是數(shù)學相關的工具類,里面提供了大量的靜態(tài)方法,完成與數(shù)學運算相關的操作。

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有大約,完整的意思

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方法,四舍 六入 五成雙    //先看看四舍六入,如果出現(xiàn)負數(shù),先轉(zhuǎn)成正數(shù),再四舍六入,最后加上負號    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    //五成雙是什么意思呢?當出現(xiàn)0.5結尾的時候,就給它再加上+0.5,5不就成雙了    //接著再對相加的結果進行floor運算    System.out.println(Math.round(-2.5)); //-2    System.out.println(Math.floor(-2.5 + 0.5)); //與Math.round(-2.5)結果一致 System.out.println(Math.round(2.5)); //3    System.out.println(Math.floor(2.5 + 0.5)); //與Math.round(2.5)結果一致  }}

4. 圓周率Math.PI

在Math類的源碼中,我們可以看到,它自定義的圓周率 PI = 3.14159265358979323846

以后的計算如果需要用到PI,盡量用已經(jīng)定義好的圓周率,非常精確

到此,關于“怎么使用java數(shù)學工具類Math”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI