Copyright (c) 1994 J. Adams, W. Brainerd, J. Martin, and B. Smith. All rights reserved. This file may not be copied without permission of the authors.
A structure component is a component of an object of user-defined type. Where the name of the component is accessible, the component may be referenced and used like any other variable. The reference may appear in an expression or as the variable on the lefthand side of an assignment statement. In the latter case, a vlaue is assigned to the component. The name of the component is accessible in a scoping unit that contains the type definition, whose host contains the type defrinition, or where the type definition is publicly accessible by use association. A component may be a scalar, an explicit-shape array, or, if it has the POINTER attribute, a deferred-shape array.
TYPE REG_FORM ! REG_FORM is a defined type. CHARACTER (30) LAST_NAME, FIRST_NAME INTEGER ID_NUM ! Note that ID_NUM in REG_FORM does not CHARACTER (2) GRADE ! conflict with ID_NUM in CLASS because END TYPE REG_FORM ! each type definition is a scoping unit. TYPE CLASS ! CLASS is a simple defined type INTEGER YEAR, QUARTER, ID_NUM ! that includes another CHARACTER(30) INSTRUCTOR ! defined type as a component. TYPE (REG_FORM) STUDENT(40) END TYPE CLASS TYPE (CLASS) ALGEBRA, CHEMISTRY ! Two structures of type CLASS TYPE (REG_FORM) TRANSFERS(20) ! An array of structures ALGEBRA % INSTRUCTOR = "Brown" ! Some typical uses ALGEBRA % ID_NUM = 101 ! of structure ALGEBRA % STUDENT(1) % ID_NUM = 593010040 ! components CHEMISTRY % STUDENT(39) % LAST_NAME = "Flake" CHEMISTRY % STUDENT(39) % GRADE = "F-" . . . ALGEBRA % STUDENT(27:33) = TRANSFERS(1:7) ! An array assignment ALGEBRA % STUDENT(6:8) % GRADE = "B+" ! The B+ is broadcast. PRINT *, CHEMISTRY % STUDENT(1:33) ! Print 33 students.
Character Substrings
Defined Type: Definition
Defined Type: Objects
Variables
ISO 1539 : 1991, Fortran Standard, 6.1.2
Fortran 90 Handbook, 6.3
Programmer's Guide to Fortran 90, 6.3.1
A structure component reference is:
part-reference [ %
part-reference ]...
A part reference is:
part-name [ (
section-subscript-list )
]
A section subscript is one of:
subscript
subscript-triplet
vector-subscript
A subscript triplet is:
[ subscript ] :
[ subscript ] [ :
subscript ]
A vector subscript is:
rank-one-integer-array
A substring of a structure component is:
part-reference [ %
part-name ]... (
starting-position :
ending-position )