Answers for "java constant naming convention"

0

java coding standards for constants

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
Posted by: Guest on November-30-2020

Code answers related to "java constant naming convention"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language