🔤Naming Conventions
Naming conventions
UpperCamelCase: For Classes, Enumerations, and Typedefs.
Good | Bad |
---|---|
|
|
|
|
|
|
snake_case: Libraries, packages, directories, and file names.
Good | Bad |
---|---|
|
|
|
|
| A |
lowerCamelCase: Variables, constants, and parameters.
Good | Bad |
---|---|
|
|
|
|
|
|
|
|
Last updated