zoukankan      html  css  js  c++  java
  • 封装分页

    package com.weilai.swmf.page;
    
    public class Page {
    	  
    	private int rowCount;//总行数
    	  
    	private int pagesize = 10;//每页显示的数据记录
    	  
    	private int curPage;//当前页
    
    	public int getRowCount() {
    		return rowCount;
    	}
    
    	public void setRowCount(int rowCount) {
    		this.rowCount = rowCount;
    	}
    
    	public int getPagesize() {
    		return pagesize;
    	}
    
    	public void setPagesize(int pagesize) {
    		this.pagesize = pagesize;
    	}
    
    	public int getCurPage() {
    		return curPage == 0 ? 1 : curPage;
    	}
    	
    	
    	public void setCurPage(int curPage) {
    		this.curPage = curPage;
    	}
    
    	/**
    	 * 上一页
    	 * @return
    	 */
    	public int getPrev() {
    		return this.getCurPage()>1 ? (this.getCurPage()-1) : 1;
    	}
    	
    	/**
    	 * 下一页
    	 * @return
    	 */
    	public int getNext() {
    		return this.getCurPage()<this.getPageCount() ? (this.getCurPage()+1) : this.getPageCount();
    	}
    	
    	/**
    	 * 获取总页数
    	 * @return
    	 */
    	public int getPageCount() {
    		return (this.getRowCount()+this.getPagesize()-1)/this.getPagesize();
    	}
    	
    	/**
    	 * 是否为最后一页
    	 * @return
    	 */
    	public boolean isLast(){
    		return (this.getCurPage() == this.getPageCount() ? true : false);
    	}
    	
    	/**
    	 * 是否为第一页
    	 */
    	public boolean isFirst(){
    		return (this.getCurPage() == 0 ? true : false);
    	}
    }
    

      

  • 相关阅读:
    Java 线程终止
    Android Jetpack架构之ProcessLifeCycleOwner
    Android Jetpack架构之LifecycleService
    Android Jetpack架构之Lifecycle
    Android Jetpack架构
    深入理解JNI技术
    Java虚拟机类加载器机制
    Java HashMap、HashTable、ConcurrentHashMap区别
    Java内存分配策略
    Java 方法分派
  • 原文地址:https://www.cnblogs.com/wasd89/p/3598805.html
Copyright © 2011-2022 走看看