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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。