Purpose
A COMPLEX type declaration statement specifies the length and attributes of objects and functions of type complex. Initial values can be assigned to objects.
Format
>>-COMPLEX--+---------------+--+-+----+----------------+--------> '-kind_selector-' | '-::-' | '-,--attr_spec_list--::-' >--entity_decl_list-------------------------------------------->< |
where:
attr_spec |
---|
ALLOCATABLE AUTOMATIC DIMENSION (array_spec) EXTERNAL INTENT (intent_spec) INTRINSIC OPTIONAL PARAMETER POINTER PRIVATE PUBLIC SAVE STATIC TARGET VOLATILE |
>>-+-(--+-----------+--int_initialization_expr--)-+------------>< | '-KIND-- = -' | | (1) | '- * --int_literal_constant--------------------'
Notes:
|
+-------------------------------IBM Extension--------------------------------+
+----------------------------End of IBM Extension----------------------------+
>>-a--+-+---------------+--+------------------+-+---------------> | | (1) | '-(--array_spec--)-' | | '- * --len------' | | (2) | '-(--array_spec--)-- * --len--------------' >--+-----------------------------------+----------------------->< | (3) | '-+-/--initial_value_list--/------+-' +- = --initialization_expr------+ | (4) | '- => --NULL()------------------'
Notes:
|
+-------------------------------IBM Extension--------------------------------+
+----------------------------End of IBM Extension----------------------------+
+-------------------------------IBM Extension--------------------------------+
+----------------------------End of IBM Extension----------------------------+
+---------------------------------Fortran 95---------------------------------+
+-----------------------------End of Fortran 95------------------------------+
Rules
+---------------------------------Fortran 95---------------------------------+
Within the context of a derived type definition:
If => appears for a variable, the object must have the POINTER attribute.
+-----------------------------End of Fortran 95------------------------------+
If initialization_expr appears for a variable, the object cannot have the POINTER attribute.
Entities in type declaration statements are constrained by the rules of any attributes specified for the entities, as detailed in the corresponding attribute statements.
The type declaration statement overrides the implicit type rules in effect. You can use a type declaration statement that confirms the type of an intrinsic function. The appearance of a generic or specific intrinsic function name in a type declaration statement does not cause the name to lose its intrinsic property.
An object cannot be initialized in a type declaration statement if it is a dummy argument, an allocatable object, a pointer, a function result, an object in blank common, an integer pointer, an external name, an intrinsic name, or an automatic object. Nor can an object be initialized if it has the AUTOMATIC attribute. The object may be initialized if:
+-------------------------------IBM Extension--------------------------------+
+----------------------------End of IBM Extension----------------------------+
+---------------------------------Fortran 95---------------------------------+
In Fortran 95, a pointer can be initialized. Pointers can only be initialized by the use of => NULL().
+-----------------------------End of Fortran 95------------------------------+
The specification expression of an array_spec can be a nonconstant expression if the specification expression appears in an interface body or in the specification part of a subprogram. Any object being declared that uses this nonconstant expression and is not a dummy argument or a pointee is called an automatic object.
An attribute cannot be repeated in a given type declaration statement, nor can an entity be explicitly given the same attribute more than once in a scoping unit.
initialization_expr must be specified if the statement
contains the PARAMETER attribute. If
initialization_expr
or NULL()
is specified, and the entity you are declaring:
+---------------------------------Fortran 95---------------------------------+
+-----------------------------End of Fortran 95------------------------------+
A variable or variable subobject cannot be initialized more than
once. If a is a variable, the presence of
initialization_expr
or NULL()
implies that a is a saved object, except for an object in a named
common block. The initialization of an object could affect the
fundamental storage class of an object.
An array_spec specified in the entity_decl takes precedence over the array_spec in the DIMENSION attribute.
An array function result that does not have the POINTER attribute must have an explicit-shape array specification.
If the entity declared is a function, it must not have an accessible explicit interface unless it is an intrinsic function.
+-------------------------------IBM Extension--------------------------------+
If T or F, defined previously as the name of a constant, appears in a type declaration statement, it is no longer an abbreviated logical constant but the name of the named constant.
+----------------------------End of IBM Extension----------------------------+
COMPLEX, DIMENSION (2,3) :: ABC(3) ! ABC has 3 (not 6) array elements
Related Information