分页计算总页数算法

推荐一种 Java的写法

int totalPageNum = (totalRecord  +  pageSize  – 1) / pageSize;

点赞