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.
User-defined data types, officially called derived types, are built of components of intrinsic or user-defined type; ultimately, the components are of intrinsic type. This permits the creation of objects, called structures, that contain components of different types (unlike arrays, which are homogeneous). It also permits objects, both scalars and arrays, to be declared to be of a user-defined type and operations to be defined on such objects. A component may be a pointer, which provides for dynamic data structures, such as lists and trees. Defined types provide the basis for building abstract data types.
TYPE TEMP_RANGE ! This is a simple example of INTEGER HIGH, LOW ! a defined type with two END TYPE TEMP_RANGE ! components, HIGH and LOW.
TYPE TEMP_RECORD ! This type uses the previous CHARACTER(LEN=40) CITY ! definition for one component. TYPE (TEMP_RANGE) EXTREMES(1950:2050) END TYPE TEMP_RECORD
TYPE LINKED_LIST ! This one has a pointer compon- REAL VALUE ! ent to provide links to other TYPE(LINKED_LIST),POINTER :: NEXT ! objects of the same type, END TYPE LINKED_LIST ! thus providing linked lists.
TYPE, PUBLIC :: SET; PRIVATE ! This is a public type whose INTEGER CARDINALITY ! component structure is INTEGER ELEMENT ( MAX_SET_SIZE ) ! private; defined END TYPE SET ! operations provide ! all functionality.
! Declare scalar and array structures of type SET. TYPE (SET) :: BAKER, FOX(1:SIZE(HH))
Defined Type: Operators and Assignment
Defined Type: Objects and Statements
Defined Type: Structure Component
Defined Type: Structure Constructor
Generic Procedures and Operators
Interfaces and Interface Blocks
Modules
PUBLIC and PRIVATE Attributes
Scope, Association, and Definition Overview
USE Statement and Use Association
ISO 1539 : 1991, Fortran Standard, 4.4, 11.3.3.3, C.11.4
Fortran 90 Handbook, 4.4, 11.6.5.3-5
Programmer's Guide to Fortran 90, 6, 7
A defined-type definition is:
TYPE
[ [ ,
access-spec ] ::
] type-name
[ PRIVATE
]
[ SEQUENCE
]
component-declaration
[ component-declaration ]...
END TYPE
[ type-name ]
A component declaration is:
type-spec [ [ ,
component-attribute-list ] ::
] component-list
A component attribute is one of:
POINTER
DIMENSION (
array-spec )