Java Number & Math 類

一般地,當(dāng)需要使用數(shù)字的時(shí)候晶乔,我們通常使用內(nèi)置數(shù)據(jù)類型珍坊,如: byteshort正罢, int阵漏, longfloat翻具, double履怯。

然而,在實(shí)際開(kāi)發(fā)過(guò)程中呛占,我們經(jīng)常會(huì)遇到需要使用對(duì)象虑乖,而不是內(nèi)置數(shù)據(jù)類型的情形。為了解決這個(gè)問(wèn)題晾虑,Java 語(yǔ)言為每一個(gè)內(nèi)置數(shù)據(jù)類型提供了對(duì)應(yīng)的包裝類疹味。

所有的包裝類( IntegerLong帜篇、 Byte糙捺、 DoubleFloat笙隙、 Short)都是抽象類 Number 的子類洪灯。

這種由編譯器特別支持的包裝稱為裝箱,所以當(dāng)內(nèi)置數(shù)據(jù)類型被當(dāng)作對(duì)象使用的時(shí)候竟痰,編譯器會(huì)把內(nèi)置類型裝箱為包裝類签钩。相似的,編譯器也可以把一個(gè)對(duì)象拆箱為內(nèi)置類型坏快。Number 類屬于 java.lang 包铅檩。

下面是一個(gè)使用 Integer 對(duì)象的實(shí)例:

Test.java 文件代碼:

public class Test{
 
   public static void main(String args[]){
      Integer x = 5;
      x =  x + 10;
      System.out.println(x); 
   }
}

以上實(shí)例編譯運(yùn)行結(jié)果如下:

15

當(dāng) x 被賦為整型值時(shí),由于x是一個(gè)對(duì)象莽鸿,所以編譯器要對(duì)x進(jìn)行裝箱昧旨。然后,為了使x能進(jìn)行加運(yùn)算祥得,所以要對(duì)x進(jìn)行拆箱兔沃。

Java Math 類

Java 的 Math 包含了用于執(zhí)行基本數(shù)學(xué)運(yùn)算的屬性和方法,如初等指數(shù)级及、對(duì)數(shù)乒疏、平方根和三角函數(shù)。

Math 的方法都被定義為 static 形式饮焦,通過(guò) Math 類可以在主函數(shù)中直接調(diào)用缰雇。

Test.java 文件代碼:

public class Test {  
    public static void main (String []args)  
    {  
        System.out.println("90 度的正弦值:" + Math.sin(Math.PI/2));  
        System.out.println("0度的余弦值:" + Math.cos(0));  
        System.out.println("60度的正切值:" + Math.tan(Math.PI/3));  
        System.out.println("1的反正切值: " + Math.atan(1));  
        System.out.println("π/2的角度值:" + Math.toDegrees(Math.PI/2));  
        System.out.println(Math.PI);  
    }  
}

以上實(shí)例編譯運(yùn)行結(jié)果如下:

90 度的正弦值:1.0
0度的余弦值:1.0
60度的正切值:1.7320508075688767
1的反正切值: 0.7853981633974483
π/2的角度值:90.0
3.141592653589793

Number & Math 類方法

xxxValue()

將 Number 對(duì)象轉(zhuǎn)換為xxx數(shù)據(jù)類型的值并返回入偷。
Test.java 文件

public class Test{ 
 
   public static void main(String args[]){
      Integer x = 5;
      // 返回 byte 原生數(shù)據(jù)類型
      System.out.println( x.byteValue() );
 
      // 返回 double 原生數(shù)據(jù)類型
      System.out.println(x.doubleValue());
 
      // 返回 long 原生數(shù)據(jù)類型
      System.out.println( x.longValue() );      
   }
}

編譯以上程序追驴,輸出結(jié)果為:

5
5.0
5

compareTo()

將number對(duì)象與參數(shù)比較械哟。

public class Test{ 
   public static void main(String args[]){
      Integer x = 5;
      System.out.println(x.compareTo(3));
      System.out.println(x.compareTo(5));
      System.out.println(x.compareTo(8));            
     }
}

編譯以上程序,輸出結(jié)果為:

1
0
-1

equals()

判斷number對(duì)象是否與參數(shù)相等殿雪。

public class Test{
    public static void main(String args[]){
        Integer x = 5;
        Integer y = 10;
        Integer z =5;
        Short a = 5;

        System.out.println(x.equals(y));  
        System.out.println(x.equals(z)); 
        System.out.println(x.equals(a));
    }
}

編譯以上程序暇咆,輸出結(jié)果為:

false
true
false

valueOf()

返回一個(gè) Number 對(duì)象指定的內(nèi)置數(shù)據(jù)類型

public class Test{ 
public static void main(String args[]){
        Integer x =Integer.valueOf(9);
        Double c = Double.valueOf(5);
        Float a = Float.valueOf("80");               

        Integer b = Integer.valueOf("444",16);   // 使用 16 進(jìn)制

        System.out.println(x); 
        System.out.println(c);
        System.out.println(a);
        System.out.println(b);
    }
}

編譯以上程序,輸出結(jié)果為:

9
5.0
80.0
1092

toString()

以字符串形式返回值丙曙。

public class Test{
    public static void main(String args[]){
        Integer x = 5;

        System.out.println(x.toString());  
        System.out.println(Integer.toString(12)); 
    }
}

編譯以上程序爸业,輸出結(jié)果為:

5
12

parseInt()

將字符串解析為int類型。

public class Test{
    public static void main(String args[]){
        int x =Integer.parseInt("9");
        double c = Double.parseDouble("5");
        int b = Integer.parseInt("444",16);

        System.out.println(x);
        System.out.println(c);
        System.out.println(b);
    }
}

編譯以上程序亏镰,輸出結(jié)果為:

9
5.0
1092

abs()

返回參數(shù)的絕對(duì)值扯旷。

public class Test{ 
    public static void main(String args[]){
        Integer a = -8;
        double d = -100;
        float f = -90;    
                        
        System.out.println(Math.abs(a));
        System.out.println(Math.abs(d));     
        System.out.println(Math.abs(f));    
    }
}

編譯以上程序,輸出結(jié)果為:

8
100.0
90.0

ceil()

返回大于等于( >= )給定參數(shù)的的最小整數(shù)索抓。

public class Test{
    public static void main(String args[]){
        double d = 100.675;
        float f = -90;    
 
        System.out.println(Math.ceil(d));
        System.out.println(Math.ceil(f)); 
                     
        System.out.println(Math.floor(d));
        System.out.println(Math.floor(f)); 
    }
}

編譯以上程序钧忽,輸出結(jié)果為:

101.0
-90.0
100.0
-90.0

floor()

返回小于等于(<=)給定參數(shù)的最大整數(shù) 。

public class Test{
    public static void main(String args[]){
        double d = 100.675;
        float f = -90;

        System.out.println(Math.floor(d));
        System.out.println(Math.floor(f));

        System.out.println(Math.ceil(d));
        System.out.println(Math.ceil(f));
    }
}

編譯以上程序逼肯,輸出結(jié)果為:

100.0
-90.0
101.0
-90.0

rint()

返回與參數(shù)最接近的整數(shù)耸黑。返回類型為double。

public class Test{
    public static void main(String args[]){
        double d = 100.675;
        double e = 100.500;
        double f = 100.200;

        System.out.println(Math.rint(d));
        System.out.println(Math.rint(e)); 
        System.out.println(Math.rint(f)); 
    }
}

編譯以上程序篮幢,輸出結(jié)果為:

101.0
100.0
100.0

round()

它表示四舍五入大刊,算法為 Math.floor(x+0.5),即將原來(lái)的數(shù)字加上 0.5 后再向下取整三椿,所以缺菌,Math.round(11.5) 的結(jié)果為12,Math.round(-11.5) 的結(jié)果為-11搜锰。

public class Test{
    public static void main(String args[]){
        double d = 100.675;
        double e = 100.500;
        float f = 100;
        float g = 90f;
 
        System.out.println(Math.round(d));
        System.out.println(Math.round(e)); 
        System.out.println(Math.round(f)); 
        System.out.println(Math.round(g)); 
    }
}

編譯以上程序伴郁,輸出結(jié)果為:

101
101
100
90

min()

返回兩個(gè)參數(shù)中的最小值。

public class Test{
    public static void main(String args[]){
        System.out.println(Math.min(12.123, 12.456));      
        System.out.println(Math.min(23.12, 23.0));  
    }
}

編譯以上程序纽乱,輸出結(jié)果為:

12.123
23.0

max()

返回兩個(gè)參數(shù)中的最大值蛾绎。

public class Test{
    public static void main(String args[]){
        System.out.println(Math.max(12.123, 18.456));      
        System.out.println(Math.max(23.12, 23.0));  
    }
}

編譯以上程序,輸出結(jié)果為:

18.456
23.12

exp()

返回自然數(shù)底數(shù)e的參數(shù)次方鸦列。

public class Test{ 
    public static void main(String args[]){
        double x = 11.635;
        double y = 2.76;

        System.out.printf("e 的值為 %.4f%n", Math.E);
        System.out.printf("exp(%.3f) 為 %.3f%n", x, Math.exp(x));  
    }
}

編譯以上程序租冠,輸出結(jié)果為:

e 的值為 2.7183
exp(11.635) 為 112983.831

log()

返回參數(shù)的自然數(shù)底數(shù)的對(duì)數(shù)值。

public class Test{
    public static void main(String args[]){
        double x = 11.635;
        double y = 2.76;

        System.out.printf("e 的值為 %.4f%n", Math.E);
        System.out.printf("log(%.3f) 為 %.3f%n", x, Math.log(x));
    }
}

編譯以上程序薯嗤,輸出結(jié)果為:

e 的值為 2.7183
log(11.635) 為 2.454

pow()

返回第一個(gè)參數(shù)的第二個(gè)參數(shù)次方顽爹。

public class Test{
    public static void main(String args[]){
        double x = 11.635;
        double y = 2.76;

        System.out.printf("e 的值為 %.4f%n", Math.E);
        System.out.printf("pow(%.3f, %.3f) 為 %.3f%n", x, y, Math.pow(x, y));
    }
}

編譯以上程序,輸出結(jié)果為:

e 的值為 2.7183
pow(11.635, 2.760) 為 874.008

sqrt()

求參數(shù)的算術(shù)平方根骆姐。

public class Test{ 
    public static void main(String args[]){
        double x = 11.635;
        double y = 2.76;

        System.out.printf("e 的值為 %.4f%n", Math.E);
        System.out.printf("sqrt(%.3f) 為 %.3f%n", x, Math.sqrt(x));
    }
}

編譯以上程序镜粤,輸出結(jié)果為:

e 的值為 2.7183
sqrt(11.635) 為 3.411

sin()

求指定double類型參數(shù)的正弦值捏题。

public class Test{
    public static void main(String args[]){
    
        double degrees = 45.0;
        double radians = Math.toRadians(degrees);

        System.out.format("pi 的值為 %.4f%n", Math.PI);
        System.out.format("%.1f 度的正弦值為 %.4f%n", degrees, Math.sin(radians));

    }
}

編譯以上程序,輸出結(jié)果為:

pi 的值為 3.1416
45.0 度的正弦值為 0.7071

cos()

求指定double類型參數(shù)的余弦值肉渴。

public class Test{ 
    public static void main(String args[]){
    
        double degrees = 45.0;
        double radians = Math.toRadians(degrees);

        System.out.format("pi 的值為 %.4f%n", Math.PI);
        System.out.format("%.1f 度的余弦值為 %.4f%n", degrees, Math.cos(radians));

    }
}

編譯以上程序公荧,輸出結(jié)果為:

pi 的值為 3.1416
45.0 度的余弦值為 0.7071

tan()

求指定double類型參數(shù)的正切值。

public class Test{
    public static void main(String args[]){

        double degrees = 45.0;
        double radians = Math.toRadians(degrees);

        System.out.format("pi 的值為 %.4f%n", Math.PI);
        System.out.format("%.1f 度的正切值是 %.4f%n", degrees, Math.tan(radians));

    }
}

編譯以上程序同规,輸出結(jié)果為:

pi 的值為 3.1416
45.0 度的正切值是 1.0000

asin()

求指定double類型參數(shù)的反正弦值循狰。

public class Test{ 
    public static void main(String args[]){

        double degrees = 45.0;
        double radians = Math.toRadians(degrees);

        System.out.format("pi 的值為 %.4f%n", Math.PI);
        System.out.format("%.4f 的反正弦值為 %.4f 度 %n", Math.sin(radians), Math.toDegrees(Math.asin(Math.sin(radians))));

    }
}

編譯以上程序,輸出結(jié)果為:

pi 的值為 3.1416
0.7071 的反正弦值為 45.0000 度 

acos()

求指定double類型參數(shù)的反余弦值券勺。

public class Test{
    public static void main(String args[]){

        double degrees = 45.0;
        double radians = Math.toRadians(degrees);

        System.out.format("pi 的值為 %.4f%n", Math.PI);
        System.out.format("%.4f 的反余弦值為 %.4f 度 %n", Math.cos(radians), Math.toDegrees(Math.acos(Math.sin(radians))));

    }
}

編譯以上程序绪钥,輸出結(jié)果為:

pi 的值為 3.1416
0.7071 的反余弦值為 45.0000 度 

atan()

求指定double類型參數(shù)的反正切值。

public class Test{ 
    public static void main(String args[]){

        double degrees = 45.0;
        double radians = Math.toRadians(degrees);

        System.out.format("pi 的值為 %.4f%n", Math.PI);
        System.out.format("%.4f 的反正切值 %.4f 度 %n", Math.cos(radians), Math.toDegrees(Math.atan(Math.sin(radians))));

    }
}

編譯以上程序关炼,輸出結(jié)果為:

pi 的值為 3.1416
0.7071 的反正切值 35.2644 度 

atan2()

將笛卡爾坐標(biāo)轉(zhuǎn)換為極坐標(biāo)程腹,并返回極坐標(biāo)的角度值。

public class Test{ 
    public static void main(String args[]){
        double x = 45.0;
        double y = 30.0;
 
        System.out.println( Math.atan2(x, y) );
    }
}

編譯以上程序儒拂,輸出結(jié)果為:

0.982793723247329

toDegrees()

將參數(shù)轉(zhuǎn)化為角度寸潦。

public class Test{
    public static void main(String args[]){
        double x = 45.0;
        double y = 30.0;

        System.out.println( Math.toDegrees(x) );
        System.out.println( Math.toDegrees(y) );
    }
}

編譯以上程序,輸出結(jié)果為:

2578.3100780887044
1718.8733853924698

toRadians()

將角度轉(zhuǎn)換為弧度侣灶。

public class Test{
    public static void main(String args[]){
        double x = 45.0;
        double y = 30.0;

        System.out.println( Math.toRadians(x) );
        System.out.println( Math.toRadians(y) );
    }
}

編譯以上程序甸祭,輸出結(jié)果為:

0.7853981633974483
0.5235987755982988

random()

返回一個(gè)隨機(jī)數(shù)。

public class Test{
    public static void main(String args[]){
        System.out.println( Math.random() );
        System.out.println( Math.random() );
    }
}

編譯以上程序褥影,輸出結(jié)果為:

0.7798644168924294
0.9984661760744737

Math 的 floor,round 和 ceil 方法實(shí)例比較

參數(shù) Math.floor Math.round Math.ceil
1.4 1 1 2
1.5 1 2 2
1.6 1 2 2
-1.4 -2 -1 -1
-1.5 -2 -1 -1
-1.6 -2 -2 -1

floor,round 和 ceil 實(shí)例:

public class Main {   
  public static void main(String[] args) {   
    double[] nums = { 1.4, 1.5, 1.6, -1.4, -1.5, -1.6 };   
    for (double num : nums) {   
      test(num);   
    }   
  }   
  
  private static void test(double num) {   
    System.out.println("Math.floor(" + num + ")=" + Math.floor(num));   
    System.out.println("Math.round(" + num + ")=" + Math.round(num));   
    System.out.println("Math.ceil(" + num + ")=" + Math.ceil(num));   
  }   
}

以上實(shí)例執(zhí)行輸出結(jié)果為:

Math.floor(1.4)=1.0
Math.round(1.4)=1
Math.ceil(1.4)=2.0
Math.floor(1.5)=1.0
Math.round(1.5)=2
Math.ceil(1.5)=2.0
Math.floor(1.6)=1.0
Math.round(1.6)=2
Math.ceil(1.6)=2.0
Math.floor(-1.4)=-2.0
Math.round(-1.4)=-1
Math.ceil(-1.4)=-1.0
Math.floor(-1.5)=-2.0
Math.round(-1.5)=-1
Math.ceil(-1.5)=-1.0
Math.floor(-1.6)=-2.0
Math.round(-1.6)=-2
Math.ceil(-1.6)=-1.0
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末池户,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子凡怎,更是在濱河造成了極大的恐慌校焦,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,348評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件统倒,死亡現(xiàn)場(chǎng)離奇詭異寨典,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)房匆,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,122評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門耸成,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人浴鸿,你說(shuō)我怎么就攤上這事井氢。” “怎么了岳链?”我有些...
    開(kāi)封第一講書人閱讀 156,936評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵花竞,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我掸哑,道長(zhǎng)约急,這世上最難降的妖魔是什么零远? 我笑而不...
    開(kāi)封第一講書人閱讀 56,427評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮厌蔽,結(jié)果婚禮上牵辣,老公的妹妹穿的比我還像新娘。我一直安慰自己躺枕,他們只是感情好服猪,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,467評(píng)論 6 385
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著拐云,像睡著了一般。 火紅的嫁衣襯著肌膚如雪近她。 梳的紋絲不亂的頭發(fā)上叉瘩,一...
    開(kāi)封第一講書人閱讀 49,785評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音粘捎,去河邊找鬼薇缅。 笑死,一個(gè)胖子當(dāng)著我的面吹牛攒磨,可吹牛的內(nèi)容都是我干的泳桦。 我是一名探鬼主播,決...
    沈念sama閱讀 38,931評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼娩缰,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼灸撰!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起拼坎,我...
    開(kāi)封第一講書人閱讀 37,696評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤浮毯,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后泰鸡,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體债蓝,經(jīng)...
    沈念sama閱讀 44,141評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,483評(píng)論 2 327
  • 正文 我和宋清朗相戀三年盛龄,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了饰迹。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,625評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡余舶,死狀恐怖啊鸭,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情欧芽,我是刑警寧澤莉掂,帶...
    沈念sama閱讀 34,291評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站千扔,受9級(jí)特大地震影響憎妙,放射性物質(zhì)發(fā)生泄漏库正。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,892評(píng)論 3 312
  • 文/蒙蒙 一厘唾、第九天 我趴在偏房一處隱蔽的房頂上張望褥符。 院中可真熱鬧,春花似錦抚垃、人聲如沸喷楣。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 30,741評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)铣焊。三九已至,卻和暖如春罕伯,著一層夾襖步出監(jiān)牢的瞬間曲伊,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工追他, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留坟募,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,324評(píng)論 2 360
  • 正文 我出身青樓邑狸,卻偏偏與公主長(zhǎng)得像懈糯,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子单雾,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,492評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容

  • importUIKit classViewController:UITabBarController{ enumD...
    明哥_Young閱讀 3,783評(píng)論 1 10
  • 1. Java基礎(chǔ)部分 基礎(chǔ)部分的順序:基本語(yǔ)法赚哗,類相關(guān)的語(yǔ)法,內(nèi)部類的語(yǔ)法铁坎,繼承相關(guān)的語(yǔ)法蜂奸,異常的語(yǔ)法,線程的語(yǔ)...
    子非魚(yú)_t_閱讀 31,598評(píng)論 18 399
  • 國(guó)家電網(wǎng)公司企業(yè)標(biāo)準(zhǔn)(Q/GDW)- 面向?qū)ο蟮挠秒娦畔?shù)據(jù)交換協(xié)議 - 報(bào)批稿:20170802 前言: 排版 ...
    庭說(shuō)閱讀 10,926評(píng)論 6 13
  • 受傷過(guò)后根本沒(méi)法專一的去喜歡一個(gè)人祖屏,好像對(duì)誰(shuí)都喜歡,又好像都很討厭买羞。有人給我說(shuō)好好生活袁勺,怎樣才算好好生活?正能量爆...
    何滿子呢閱讀 318評(píng)論 0 2
  • 功能性 Auto Close Tag : 匹配標(biāo)簽畜普,關(guān)閉對(duì)應(yīng)的標(biāo)簽期丰。很實(shí)用【HTML/XML】Auto Renam...
    xiaoaiai閱讀 333評(píng)論 0 0