如何在 Java 中把長整型轉換為整型
Hassan Saeed
2023年1月30日
2020年10月15日
本教程討論了在 Java 中把長整型轉換為整型的方法。
在 Java 中使用型別轉換將長整型轉換為整型
在 Java 中,將長整型轉換為整型的最簡單方法是使用 (int) longVar
將長整型轉換為整型。下面的例子說明了這一點。
public class MyClass {
public static void main(String args[]) {
long myLong = 10000l;
int myInt = (int) myLong;
System.out.println("Value of long: " + myLong);
System.out.println("Value after conversion to int: " + myInt);
}
}
輸出:
Value of long: 10000
Value after conversion to int: 10000
在 Java 中使用 Math.toIntExac()
把長整型轉換為整型
在 Java 8 及以上版本中,我們可以使用內建的 Math
類方法- Math.toIntExac()
,將 Java 中的長整型轉換為整型。下面的例子說明了這一點。
public class MyClass {
public static void main(String args[]) {
long myLong = 10000l;
int myInt = Math.toIntExact(myLong);
System.out.println("Value of long: " + myLong);
System.out.println("Value after conversion to int: " + myInt);
}
}
輸出:
Value of long: 10000
Value after conversion to int: 10000
這是在 Java 中把長整型轉換為整型的兩個常用方法。但是,我們需要確保我們所擁有的長整型值可以完全儲存在整型中,因為兩者的記憶體限制不同,32 位與 64 位。
當我們試圖將大於 32 位的長整型值轉換為整型時,這兩種方法的表現是不同的。
下面的例子說明了在這種情況下,型別轉換是如何進行的。
public class MyClass {
public static void main(String args[]) {
long myLong = 10000000000l;
int myInt = (int) myLong;
System.out.println("Value of long: " + myLong);
System.out.println("Value after conversion to int: " + myInt);
}
}
輸出:
Value of long: 10000000000
Value after conversion to int: 1410065408
請注意,轉換後的值是錯誤的,因為我們不能將這個長整型值放入整型變數中。
下面的例子說明了 Math.toIntExac()
在這種情況下是如何處理的。
public class MyClass {
public static void main(String args[]) {
long myLong = 10000000000l;
int myInt = Math.toIntExact(myLong);
System.out.println("Value of long: " + myLong);
System.out.println("Value after conversion to int: " + myInt);
}
}
輸出:
> Exception in thread "main" java.lang.ArithmeticException: integer overflow
at java.base/java.lang.Math.toIntExact(Math.java:1071)
at MyClass.main(MyClass.java:4)
請注意,這個方法給出了一個整數溢位錯誤,而不是錯誤地試圖將長整型擬合到一個整型變數中。