mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-12-07 09:39:01 +08:00
fix doc
This commit is contained in:
parent
ea717843f6
commit
5ae493119f
@ -59,7 +59,7 @@ public class Combination implements Serializable {
|
|||||||
*
|
*
|
||||||
* @param n 总数 n(必须 大于等于 0)
|
* @param n 总数 n(必须 大于等于 0)
|
||||||
* @param m 取出 m(必须 大于等于 0)
|
* @param m 取出 m(必须 大于等于 0)
|
||||||
* @return C(n, m) 的 BigInteger 精确值;当 m > n 时返回 BigInteger.ZERO
|
* @return C(n, m) 的 BigInteger 精确值;当 m 大于 n 时返回 BigInteger.ZERO
|
||||||
*/
|
*/
|
||||||
public static BigInteger countBig(int n, int m) {
|
public static BigInteger countBig(int n, int m) {
|
||||||
if (n < 0 || m < 0) {
|
if (n < 0 || m < 0) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user