forlang.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
ALLOCATABLE Attribute
                                             Up Contents Index Back
─────ALLOCATABLE Attribute──────────────────────────────────────────────────
 
     Allows the dimensions of an array to be dynamically determined at
     run-time, not during compilation. ALLOCATABLE can appear in either
     a type declaration or a DIMENSION statement.
 
     Indicate an allocatable array by leaving colons in the declaration
     where you would ordinarily place dimensions. For instance, the
     following line declares a dynamic array with three dimensions:
 
     REAL*8 dynamic [ALLOCATABLE] (:, :, :)
 
     Restrictions: Cannot apply to formal arguments; cannot be used with
     NEAR; works only with arrays
 
     See Also: Formal Argument
               ALLOCATE
               DEALLOCATE
                                    -♦-