開發中往往需要定義一些常量。單個的很簡單,如果是多個一組的話,
1.使用列舉定義
public
enum
sv_question_type
public
integer
getvalue
()
}
2.使用靜態常量map定義 (推薦) ,在頁面存入的時候比較方便
/**
* 收集資料列型別
*/
public
final
static
map<
string
,integer
>
gatherdatacolumnstatus
=new
hashmap
<
string
,integer
>();
static
/** chr組織架構維護-drp系統-部門所屬主體預設值*/
public
static
string
syncdeptinfo_drpentity_default
;
該方法定義好之後。如果view頁面需要用到,則存入範圍之內
c 公共常量定義方式的比較
我們常在公共標頭檔案中定義一些常量,定義常量方法如下 方法1commdef.h 公共標頭檔案 const int constname 在使用該變數的地方加入 include commdef.h 方法2commdef.h 公共標頭檔案 extern const int constname commde...
JAVA中定義常量的幾種方式
1 最古老的 未處理public static final integer process status untreated 0 已接收 public static final integer process status accpected 1 已處理 public static final in...
java系統常量定義的幾種方式
1 介面定義 public inte ce constantcode 介面的成員變數只能是常量,預設修飾符 public static final 看似正好符合常量的使用規範,但是介面的意義是可以被實現,而實現乙個只有常量的介面沒有實際意義,所以這種方式不推薦使用。2 final class pub...