The FORTRAN Programming LanguageSub-Programs and Storage ManagementSubprograms in FORTRAN are indicated with FUNCTION or SUBROUTINE. Functions FORTRAN also allows programmers to define their own functions using FUNCTION. The basic structure of FORTRAN 77 functions are:
<type> FUNCTION <name> (<list of variables>) <Name> is both the name of the function and the name of the <type> variable who's value will be returned. In FORTRAN 77 the return types of functions is restricted. The list of variables are values that will be used to calculate the value of <name>. Functions themselves can be arguments in the list of parameters, but to limit side-effects, the function cannot change the values of other operands in the expression. FORTRAN 77 does not type check the parameters of subprograms, but FORTRAN 90 does. When passing multi-dimensional arrays as parameters, Pre-90's versions of FORTRAN require the dimensions to also be passed as arguments. FORTRAN 90 has changed a main program's reference to both functions and subroutines with the INTERFACE block. This block lists the number of arguments, their type and the return type (if any) of the subprograms called. This assists in compile-time type checking. The function declaration has changed as well
FUNCTION <name> (<list of variables>) The INTENT(IN) qualify indicates that the parameter value is not supposed to be modified by the subprogram. The declaration of a Subroutine in FORTRAN 90 is similar:
SUBROUTINE <name> (<list of variables>) Recursion and subprograms Parameter Passing Other FeaturesFORTRAN 90 provides EXIT to end the execution of a block of text. CONTINUE transfers control to the top of the smallest enclosing loop. Finally, CYCLE transfers control to the bottom of an iterative loop. FORTRAN 90 allows independent compilation and FORTRAN 90 provides separate compilation.
|