Java Math toIntExact()方法從指定的long參數(shù)返回int值。
toIntExact()方法的語法為:
Math.toIntExact(long value)
注意:toIntExact()是靜態(tài)方法。因此,我們可以使用Math類名來訪問該方法。
value - 將作為int返回的參數(shù)
從指定的long值返回int值
class Main { public static void main(String[] args) { //創(chuàng)建long變量 long value1 = 52336L; long value2 = -445636L; //將long更改為int int num1 = Math.toIntExact(value1); int num2 = Math.toIntExact(value2); //打印int值 System.out.println(num1); // 52336 System.out.println(num2); // -445636 } }
在上面的示例中,我們使用了Math.toIntExact()方法從指定long變量中獲取int值。
如果返回的int值不在int數(shù)據(jù)類型的范圍內(nèi),則toIntExact()方法將引發(fā)異常。
class Main { public static void main(String[] args) { //創(chuàng)建一個(gè)long變量 long value = 32147483648L; //將long轉(zhuǎn)換為int int num = Math.toIntExact(value); System.out.println(num); } }
在上面的示例中,long變量的值為32147483648。當(dāng)我們將long變量轉(zhuǎn)換為時(shí)int,結(jié)果值超出了int數(shù)據(jù)類型的范圍。
因此,toIntExact()方法引發(fā)integer overflow異常。