Naming convention (programming): Difference between revisions

Content deleted Content added
Examples of multiple-word identifier formats: No "camel" in SCREAMINGCAMELCASE
m Java: changed out the description of SCREAMING_SNAKE_CASE for it's name
Line 233:
|-
|Constants
|Constants should be written in uppercase[[Snake characters separated by underscorescase|SCREAMING_SNAKE_CASE]]. Constant names may also contain digits if appropriate, but not as the first character.
|
* {{code|2=java|1=static final int MAX_PARTICIPANTS = 10;}}