- 2.2.8.5. -
Table of Contents
2. TMT Pascal Language Description
2.2. Pascal Language Structure
2.2.8. Expressions
2.2.8.5. Typecasts
2.2.8.5. Typecasts
Typecasts allow operands of one type to be converted to another type.
Typecasts are allowed on either values or variables. Typecasts on values
are restricted to ordinal and pointer types. The only restriction on typecasts
on variables is that the sizes of both types must be the same. The following
are examples of typecasts:
Integer('0')
Boolean(1)
DWORD(@BuffPtr)
Char(27)
Pointer($A0000)
- 2.2.8.5. -