const

An unchanging value, usually an integer. Used in place of "magic numbers" to make code more readible. Only int, string, and float data types may be used as constant.


Example

int iOuch = DURATION_TYPE_PERMANENT;

See Also

Data Types