抽象常量class

需要把经常用到的常量抽象到一个类里面管理

如:

package com.test.common;

public class Constant {
    
    /*
     * SYSTEM DEFAULT DATA FORMATS
     */
    public final static String DEFAULT_DATE_FORMAT = "yyyy-MM-dd";
    
    /*
     * 每页显示的条数
     */
    public final static int UNIT_CNT = 10;
    
}

 

posted @ 2015-09-22 11:26  bada130  阅读(170)  评论(0编辑  收藏  举报