📜  常量的java编码标准 - Java代码示例

📅  最后修改于: 2022-03-11 14:52:18.894000             🧑  作者: Mango

代码示例1
Constants in java are created using static and final keywords.
1) Constants contains only uppercase letters.
2) If constant name is combination of two words it should be separated 
by underscore.
3) Constant names are usually nouns.
Ex:MAX_VALUE, MIN_VALUE, MAX_PRIORITY, MIN_PRIORITY