MQL4 Reference Language Basics Data Types Integer Types Enumerations
EnumerationsData of the enum type belong to a certain limited set of data. Defining the enumeration type:
The list of values is a list of identifiers of named constants separated by commas. Example:
After the enumeration is declared, a new integer-valued 4-byte data type appears. Declaration of the new data type allows the compiler to strictly control types of passed parameters, because enumeration introduces new named constants. In the above example, the January named constant has the value of 0, February - 1, December - 11. Rule: If a certain value is not assigned to a named constant that is a member of the enumeration, its new value will be formed automatically. If it is the first member of the enumeration, the 0 value will be assigned to it. For all subsequent members, values will be calculated based on the value of the previous members by adding one. Example:
Notes
See also |