一般地,當(dāng)需要使用數(shù)字的時(shí)候晶乔,我們通常使用內(nèi)置數(shù)據(jù)類型珍坊,如: byte, short正罢, int阵漏, long, float翻具, 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)的包裝類疹味。
所有的包裝類( Integer、 Long帜篇、 Byte糙捺、 Double、 Float笙隙、 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