Guava IntMath類的除法(int p,int q,RoundingMode mode)方法接受三個參數,並計算根據第三個參數指定的舍入模式進行舍入後的第一個參數除以第二個參數的結果。
用法:
public static int divide(int p, int q, RoundingMode mode)
參數:該方法采用3個參數,其中p和q是整數,而mode是指定的舍入模式。
返回值:此方法返回第一個參數除以第二個參數的結果,並根據第三個參數指定的舍入模式進行舍入。
異常:在以下情況下,該方法將引發ArithmeticException:
- q == 0,或
- mode == UNNECESSARY,並且p不是q的整數倍。
Enum RoundingMode
枚舉常量 | 描述 |
---|---|
CEILING | 舍入模式向正無窮大舍入。 |
DOWN | 舍入模式向零舍入。 |
FLOOR | 舍入模式向負無窮大舍入。 |
HALF_DOWN | 除非兩個鄰居等距,否則舍入模式將朝“nearest neighbor”舍入。 |
HALF_EVEN | 舍入模式向“nearest neighbor”舍入,除非兩個鄰居都等距,在這種情況下,向偶數鄰居舍入。 |
HALF_UP | 除非兩個鄰居等距,否則舍入模式將朝“nearest neighbor”舍入。 |
UNNECESSARY | 舍入模式可以斷言所請求的操作具有準確的結果,因此不需要舍入。 |
UP | 舍入模式從零舍入。 |
以下示例說明了上述方法的實現:
範例1:
// Java code to show implementation of
// divide(int p, int q, RoundingMode mode)
// method of Guava's IntMath class
import java.math.RoundingMode;
import com.google.common.math.IntMath;
class GFG {
// Driver code
public static void main(String args[])
{
int dividend1 = 55;
int divisor1 = 10;
// Using divide(int p, int q,
// RoundingMode mode)
// method of Guava's IntMath class
int quotient1
= IntMath.divide(dividend1, divisor1,
RoundingMode.HALF_DOWN);
System.out.println(quotient1);
int dividend2 = 55;
int divisor2 = 10;
// Using divide(int p, int q,
// RoundingMode mode)
// method of Guava's IntMath class
int quotient2
= IntMath.divide(dividend2, divisor2,
RoundingMode.CEILING);
System.out.println(quotient2);
}
}
輸出:
5 6
範例2:
// Java code to show implementation of
// divide(int p, int q, RoundingMode mode)
// method of Guava's IntMath class
import java.math.RoundingMode;
import com.google.common.math.IntMath;
class GFG {
static int findDiv(int dividend,
int divisor,
RoundingMode mode)
{
try {
// Using divide(int p, int q,
// RoundingMode mode)
// method of Guava's IntMath class
int quotient
= IntMath.divide(dividend,
divisor,
RoundingMode.HALF_DOWN);
// Return the answer
return quotient;
}
catch (Exception e) {
System.out.println(e);
return -1;
}
}
// Driver code
public static void main(String args[])
{
int dividend = 32;
int divisor = 0;
try {
// Function calling
findDiv(dividend, divisor,
RoundingMode.HALF_EVEN);
}
catch (Exception e) {
System.out.println(e);
}
}
}
輸出:
java.lang.ArithmeticException:/ by zero
相關用法
- Java IntMath log10(int x, RoundingMode mode)用法及代碼示例
- Java LongMath log10(long x, RoundingMode mode)用法及代碼示例
- Java LongMath.divide(long, long, RoundingMode)用法及代碼示例
- Java Guava LongMath sqrt(long x, RoundingMode mode)用法及代碼示例
- Java Guava IntMath sqrt(int x, RoundingMode mode)用法及代碼示例
- Java Guava Chars.max()用法及代碼示例
- Java Guava Doubles.contains()用法及代碼示例
- Java Guava Doubles.max()用法及代碼示例
- Java Guava Longs.min()用法及代碼示例
- Java Guava Longs.max()用法及代碼示例
- Java Guava Floats.min()用法及代碼示例
- Java Guava Chars.min()用法及代碼示例
- Java Guava Floats.max()用法及代碼示例
注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 Java Guava | IntMath.divide(int, int, RoundingMode) method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。