记录一次在手动分页中用Math.min()避免数组越界错误
Math.min是什么意思
Math.min
是 Java 的一个内置方法,用于返回两个数字中较小的那个。它可以处理整数、浮点数等不同类型的数值。具体来说,Math.min(a, b)
会返回 a
和 b
中较小的值。
作用和用途
在分页逻辑中,Math.min
经常用于确保索引值不超过列表的大小,从而避免数组越界错误。
示例解释
假设有一个列表长度为 total
,我们希望获取第 pageNum
页的数据,每页的大小为 pageSize
:
1.计算起始索引:
int start = Math.min((pageNum - 1) * pageSize, total);
2.计算结束索引:
int end = Math.min(start + pageSize, total);
同样的,Math.min
确保结束索引 end
不会超过列表的长度 total
。即使 start + pageSize
过大,end
也不会超过 total
。
具体代码示例
int total = list.size(); // 100
int pageNum = 5;
int pageSize = 10;
// 计算起始索引和结束索引
int start = Math.min((pageNum - 1) * pageSize, total); // Math.min(40, 100) => 40
int end = Math.min(start + pageSize, total); // Math.min(50, 100) => 50
// 获取当前页的数据
List<Integer> paginatedList = list.subList(start, end);
在这个示例中,Math.min
确保了即使 pageNum
过大,start
和 end
也不会超出列表的范围。
总结
Math.min
在分页处理中用于确保计算出的索引值不会超过列表的长度,避免数组越界错误,从而提高代码的健壮性和可靠性。
- 感谢你赐予我前进的力量
赞赏者名单
因为你们的支持让我意识到写文章的价值🙏
本文是原创文章,采用 CC BY-NC-ND 4.0 协议,完整转载请注明来自 楠笙
评论
隐私政策
你无需删除空行,直接评论以获取最佳展示效果
音乐天地