Naming Conventions
Variable Names
Many code samples use variables whose names are prefixed with specific lower-case
letters. The following list describes the meaning of these prefixes.
- "g" - global variable.
- "l" - local variable.
- "p" - function parameter.
- "m" - class member.
NOTE:Some code samples do not strictly follow this naming convention.