编程语言
首页 > 编程语言> > 分页算法

分页算法

作者:互联网

方法一

//总页数=(总记录数+每页行数-1)/每页行数
intPageCount = (intRowCount+intPageSize-1) / intPageSize;

 

方法二

//总记录数与每页显示记录数求余运算,计算总页数

setTotalpage(this.totalrecord % this.maxresult == 0 ? this.totalrecord / this.maxresult : this.totalrecord / this.maxresult + 1);

标签:分页,记录,算法,totalrecord,页数,intPageSize,maxresult,每页行数
来源: https://www.cnblogs.com/tc310/p/10620229.html