Java番石榴 |带有示例的 Longs.factorial(int n) 方法
Guava 的 LongMath 类的factorial(int n)方法返回前 n 个正整数的乘积,即 n!。
句法 :
public static long factorial(int n)
参数:该方法只接受一个参数n ,它是整数类型,用于查找阶乘。
返回值:此方法返回以下值:
- 如果 n 为 0,此方法返回1 。
- 如果结果适合长整数,则此方法返回前 n 个正整数的乘积。
- 如果结果不适合 long,则此方法返回Long.MAX_VALUE 。
异常:如果 n 为负数,方法 factorial(int n) 将抛出IllegalArgumentException 。
下面的程序说明了 LongMath.factorial() 方法的使用:
示例 1:
// Java code to show implementation of
// factorial(int n) method of Guava's
// LongMath Class
import java.math.RoundingMode;
import com.google.common.math.LongMath;
class GFG {
// Driver code
public static void main(String args[])
{
int n1 = 10;
// Using factorial(int n) method of
// Guava's LongMath class
long ans1 = LongMath.factorial(n1);
System.out.println("factorial of "
+ n1 + " is : "
+ ans1);
int n2 = 12;
// Using factorial(int n) method of
// Guava's LongMath class
long ans2 = LongMath.factorial(n2);
System.out.println("factorial of "
+ n2 + " is : "
+ ans2);
}
}
输出:
factorial of 10 is : 3628800
factorial of 12 is : 479001600
示例 2:
// Java code to show implementation of
// factorial(int n) method of Guava's
// LongMath Class
import java.math.RoundingMode;
import com.google.common.math.LongMath;
class GFG {
static long findFact(int n)
{
try {
// Using factorial(int n) method of
// Guava's LongMath class
// This should throw "IllegalArgumentException"
// as n < 0
long ans = LongMath.factorial(n);
// Return the answer
return ans;
}
catch (Exception e) {
System.out.println(e);
return -1;
}
}
// Driver code
public static void main(String args[])
{
int n = -5;
try {
// Function calling
findFact(n);
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
java.lang.IllegalArgumentException: n (-5) must be >= 0
参考: https://google.github.io/guava/releases/20.0/api/docs/com/google/common/math/LongMath.html#factorial-int-