1
我從DB搜索結果列表,我也有pageSize的&我想算noOfPages什麼是從搜索結果(Java)中統計頁數的方法?
int pageSize=3;
int totalResults=...;
int noOfPages=methodX(totalResults/pageSize);
所以,如果totalResults=9
然後noOfPages=3
,如果totalResults=100
然後noOfPages=34
甚至100/3 = 33.33 所以基本上無論多少分數都會湊整,只要有一小部分,它就會收起來。