詳解Java中Math.round()的取整規(guī)則
做Java的面試題時遇到了以下這題,百度了一下Math.round()的修約規(guī)則,有的說是四舍五入,有的說是四舍六入,發(fā)現(xiàn)和我學(xué)分析化學(xué)時用的數(shù)字修約規(guī)則(四舍六入五成雙)很像,所以驗證一下;原題:Math.round(11.5) 等于多少?Math.round(-11.5)等于多少?作者給的解題方法如下:
答:Math.round(11.5)的返回值是12,Math.round(-11.5)的返回值是-11。四舍五入的原理是在參數(shù)上加0.5然后進(jìn)行下取整。
先說結(jié)論,題目作者給的解釋是對的,后來找了該方法的定義,結(jié)果方法的定義就是這個原理,果然看文檔才是王道;
round方法:
static long round(double a)此方法返回的參數(shù)最接近的long.
static int round(float a)此方法返回的參數(shù)最接近的整數(shù).
注:四舍六入五成雙:
當(dāng)有效位數(shù)確定后,其后面多余的數(shù)字應(yīng)該舍去,只保留有效數(shù)字最末一位,這種修約(舍入)規(guī)則是“四舍六入五成雙”,也即“4舍6入5湊偶”這里“四”是指≤4 時舍去,”六”是指≥6時進(jìn)上,”五”指的是根據(jù)5后面的數(shù)字來定,當(dāng)5后有數(shù)時,舍5入1;當(dāng)5后無有效數(shù)字時,需要分兩種情況來講:①5前為奇數(shù),舍5入1;②5前為偶數(shù),舍5不進(jìn)。(0是偶數(shù))
以下只論證static int round(float a)
//四舍 int[] test1 = {Math.round(2.40f),Math.round(2.44f),Math.round(2.45f), Math.round(2.46f), Math.round(-2.40f),Math.round(-2.44f), Math.round(-2.45f), Math.round(-2.46f),Math.round(3.40f),Math.round(3.44f), Math.round(3.45f),Math.round(3.46f), Math.round(-3.40f),Math.round(-3.44f), Math.round(-3.45f), Math.round(-3.46f)}; for(int i = 0; i< test1.length; i++) { System.out.print(test1[i]+','); } //輸出:2,2,2,2,-2,-2,-2,-2,3,3,3,3,-3,-3,-3,-3,符合四舍;也符合 加0.5,進(jìn)行下取整; //六入 int[] test2 = {Math.round(2.60f),Math.round(2.64f),Math.round(2.65f), Math.round(2.66f), Math.round(-2.60f),Math.round(-2.64f), Math.round(-2.65f), Math.round(-2.66f),Math.round(3.60f),Math.round(3.64f), Math.round(3.65f),Math.round(3.66f), Math.round(-3.60f),Math.round(-3.64f), Math.round(-3.65f), Math.round(-3.66f)}; for(int i = 0; i< test2.length; i++) { System.out.print(test2[i]+','); } //輸出:3,3,3,3,-3,-3,-3,-3,4,4,4,4,-4,-4,-4,-4,符合六入;也符合 加0.5,進(jìn)行下取整; //五成雙之五后無數(shù)字 int[] test3 = {Math.round(2.5f),Math.round(-2.5f),Math.round(3.5f),Math.round(-3.5f)}; for(int i = 0; i< test3.length; i++) { System.out.print(test3[i]+','); } //輸出:3,-2,4,-3,不符合五成雙;符合 加0.5,進(jìn)行下取整; //五成雙之五后有數(shù)字(零,非零) int[] test4 = {Math.round(2.50f),Math.round(2.51f),Math.round(2.59f), Math.round(-2.50f),Math.round(-2.51f),Math.round(-2.59f),Math.round(3.50f),Math.round(3.51f),Math.round(3.59f), Math.round(-3.50f),Math.round(-3.51f),Math.round(-3.59f), }; for(int i = 0; i< test4.length; i++) { System.out.print(test4[i]+','); } //輸出:3,3,3,-2,-3,-3,4,4,4,-3,-4,-4,不符合五后非零進(jìn)一;符合 加0.5,進(jìn)行下取整; //結(jié)論:Math.round()的取整規(guī)則不符合四舍六入五成雙,以上案例符合 加0.5,進(jìn)行下取整;
到此這篇關(guān)于詳解Java中Math.round()的取整規(guī)則的文章就介紹到這了,更多相關(guān)Java Math.round()取整 內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. 低版本IE正常運(yùn)行HTML5+CSS3網(wǎng)站的3種解決方案2. ASP.NET泛型三之使用協(xié)變和逆變實現(xiàn)類型轉(zhuǎn)換3. jsp+servlet簡單實現(xiàn)上傳文件功能(保存目錄改進(jìn))4. 如何在jsp界面中插入圖片5. XML基本概念XPath、XSLT與XQuery函數(shù)介紹6. JS中map和parseInt的用法詳解7. PHP循環(huán)與分支知識點梳理8. jsp實現(xiàn)登錄界面9. AspNetCore&MassTransit Courier實現(xiàn)分布式事務(wù)的詳細(xì)過程10. JSP數(shù)據(jù)交互實現(xiàn)過程解析
