1、在Java中,經(jīng)常希望某個(gè)常量可以在一個(gè)類的多個(gè)方法中使用,通常將這些常量稱為類常量。
可以使用關(guān)鍵字 static final 設(shè)置一個(gè)類常量。
2、類常量的定義位于main方法的外部,因此,在同一個(gè)類的其他方法中也可以使用這個(gè)常量。
而且,一個(gè)常量被聲明為public,那么其他類的方法也可以使用這個(gè)常量。
實(shí)例
package cn.itcast.estore.util;
public final class Constant {
private Constant() {
super();
}
/******************************* Common常量列表 *********************************/
/**
* Common常量列表(存放公共的常量)
***/
public static final class Common {
private static final int INT_ZERO = 0;
private static final int INT_ONE = 1;
private static final String IDENTIFYING_CODE = "identifying_code";
private static final String ENCODING_TYPE_UTF8 = "UTF-8";
private static final String ENCODING_TYPE_ISO8895_1 = "ISO-8859-1";
private static final String ENCODING_TYPE_GBK = "GBK";
private static final String CONTENT_TYPE_TextHtml = "text/html";
private static final String GET = "GET";
private static final String POST = "POST";
private static final String ENCRYPT_TYPE_MD5 = "md5";
private static final String ENCRYPT_TYPE_SHA1 = "sha1";
// 私有
private Common() {
super();
}
// 常量 "0"
public static int INT_ZERO() {
return INT_ZERO;
}
// 常量 "1"
public static int INT_ONE() {
return INT_ONE;
}
// 驗(yàn)證碼常量名
public static String IDENTIFYING_CODE() {
return IDENTIFYING_CODE;
}
// utf8 編碼類型
public static String ENCODING_TYPE_UTF8() {
return ENCODING_TYPE_UTF8;
}
// ISO-8859-1 編碼類型
public static String ENCODING_TYPE_ISO8895_1() {
return ENCODING_TYPE_ISO8895_1;
}
// GBK 編碼類型
public static String ENCODING_TYPE_GBK() {
return ENCODING_TYPE_GBK;
}
// 設(shè)置text/html 文本類型
public static String CONTENT_TYPE_TextHtml() {
return CONTENT_TYPE_TextHtml;
}
// GET
public static String GET() {
return GET;
}
// POST
public static String POST() {
return POST;
}
// MD5
public static String ENCRYPT_TYPE_MD5() {
return ENCRYPT_TYPE_MD5;
}
// sha1
public static String ENCRYPT_TYPE_SHA1() {
return ENCRYPT_TYPE_SHA1;
}
}
/*******************************User常量列表*********************************/
/**
* User 存放和User類相關(guān)的常量
***/
public static final class User {
private static final String USER_IN_SESSION = "user_in_session";
private static final String USER_NAME = "username";
// 私有
private User() {
super();
}
//
public static String USER_IN_SESSION() {
return USER_IN_SESSION;
}
//
public static String USER_NAME() {
return USER_NAME;
}
}
}
以上就是java類常量的介紹,希望對大家有所幫助。更多關(guān)于“java培訓(xùn)”的問題,歡迎咨詢千鋒教育在線名師。千鋒教育多年辦學(xué),課程大綱緊跟企業(yè)需求,更科學(xué)更嚴(yán)謹(jǐn),每年培養(yǎng)泛IT人才近2萬人。不論你是零基礎(chǔ)還是想提升,都可以找到適合的班型,千鋒教育隨時(shí)歡迎你來試聽。