mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
commit
e7659d6e26
@ -2329,7 +2329,7 @@ public class NumberUtil {
|
||||
* @since 3.0.6
|
||||
*/
|
||||
public static int count(int total, int part) {
|
||||
return (total % part == 0) ? (total / part) : (total / part + 1);
|
||||
return total == 0 ? 0 : (total - 1) / part + 1;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user