%The basic components of the Fortran language are its character set. The members are:
= : + blank - * / ( ) , . $ ' (old) ! " % & ; < > ? (new)
From these components, we build the tokens that have a syntactic meaning to the compiler. There are six classes of token:
From the tokens, we can build statements . These can be coded using the new free source form which does not require positioning in a rigid column structure, as follows:
FUNCTION string_concat(s1, s2) ! This is a comment TYPE (string), INTENT(IN) :: s1, s2 TYPE (string) string_concat string_concat%string_data = s1%string_data(1:s1%length) // & s2%string_data(1:s2%length) ! This is a continuation string_concat%length = s1%length + s2%length END FUNCTION string_concatNote the trailing comments and the trailing continuation mark. There may be 39 continuation lines, and 132 characters per line. Blanks are significant. Where a token or character constant is split across two lines:
... start_of& &_name ... 'a very long & &string'a leading & on the continued line is also required.
Automatic conversion of source form for existing programs can be carried out by CONVERT (CERN Program Library Q904). Its options are:
The source code of the CONVERT program is here.
Fortran has five intrinsic data types. For each there is a corresponding form of literal constant. For the three numeric intrinsic types they are:
Examples are:
1 0 -999 32767 +10for the default kind; but we may also define, for instance for a desired range of -10^{-4} to 10^4, a named constant , say two_bytes:
INTEGER, PARAMETER :: two_bytes = SELECTED_INT_KIND(4)that allows us to define constants of the form
-1234_two_bytes +1_two_bytesHere, two_bytes is the kind type parameter ; it can also be a default integer literal constant, like
-1234_2but use of an explicit literal constant would be non-portable.
The KIND function supplies the value of a kind type parameter:
KIND(1) KIND(1_two_bytes)and the RANGE function supplies the actual decimal range (so the user must make the actual mapping to bytes):
RANGE(1_two_bytes)
Also, in DATA statements, binary , octal and hexadecimal constants may be used:
B'01010101' O'01234567' Z'10fa'
There are at least two real kinds - the default, and one with greater precision (this replaces DOUBLE PRECISION). We might specify
INTEGER, PARAMETER :: long = SELECTED_REAL_KIND(9, 99)for at least 9 decimal digits of precision and a range of 10^{-99} to 10^{99}, allowing
1.7_longAlso, we have the intrinsic functions
KIND(1.7_long) PRECISION(1.7_long) RANGE(1.7_long)that give in turn the kind type value, the actual precision (here at least 9), and the actual range (here at least 99).
This data type is built of two integer or real components:
(1, 3.7_long)
The numeric types are based on model numbers with associated inquiry functions
(whose values are independent of the values of their arguments). These functions are important for writing portable numerical software.
The forms of literal constants for the two non-numeric data types are:
'A string' "Another" 'A "quote"' ''(the last being a null string). Other kinds are allowed, especially for support of non-European languages:
2_' 'and again the kind value is given by the KIND function:
KIND('ASCII')
Here, there may also be different kinds (to allow for packing into bits):
.FALSE. .true._one_bitand the KIND function operates as expected:
KIND(.TRUE.)
We can specify scalar variables corresponding to the five intrinsic types:
INTEGER(KIND=2) i REAL(KIND=long) a COMPLEX current LOGICAL Pravda CHARACTER(LEN=20) word CHARACTER(LEN=2, KIND=Kanji) kanji_wordwhere the optional KIND parameter specifies a non-default kind, and the LEN= specifier replaces the *len form. The explicit KIND and LEN specifiers are optional and the following works just as well:
CHARACTER(2, Kanji) kanji_word
For derived-data types we must first define the form of the type:
TYPE person CHARACTER(10) name REAL age END TYPE personand then create structures of that type:
TYPE(person) you, meTo select components of a derived type, we use the
you%ageand the form of a literal constant of a derived type is shown by:
you = person('Smith', 23.5)which is known as a structure constructor .
Definitions may refer to a previously defined type:
TYPE point REAL x, y END TYPE point TYPE triangle TYPE(point) a, b, c END TYPE triangleand for a variable of type triangle, as in
TYPE(triangle) twe then have components of type point:
t%a t%b t%cwhich, in turn, have ultimate components of type real:
t%a%x t%a%y t%b%x etc.We note that the
Arrays are considered to be variables in their own right. Given
REAL a(10) INTEGER, DIMENSION(0:100, -50:50) :: map(the latter an example of the syntax that allows grouping of attributes to the left of :: and of variables sharing those attributes to the right), we have two arrays whose elements are in array element order (column major), but not necessarily in contiguous storage. Elements are, for example,
a(1) a(i*j)and are scalars. The subscripts may be any scalar integer expression. Sections are
a(i:j) ! rank one map(i:j, k:l:m) ! rank two a(map(i, k:l)) ! vector subscript a(3:2) ! zero lengthWhole arrays and array sections are array-valued objects. Array-valued constants (constructors) are available:
(/ 1, 2, 3, 4, 5 /) (/ (i, i = 1, 9, 2) /) (/ ( (/ 1, 2, 3 /), i = 1, 10) /) (/ (0, i = 1, 100) /) (/ (0.1*i, i = 1, 10) /)making use of the implied-DO loop notation familiar from I/O lists. A derived data type may, of course, contain array components:
TYPE triplet REAL, DIMENSION(3) :: vertex END TYPE triplet TYPE(triplet), DIMENSION(1) :: tso that
t(2) ! a scalar (a structure) t(2)%vertex ! an array component of a scalar
There are some other interesting character extensions. Just as a substring as in
CHARACTER(80), DIMENSION(60) :: page ... = page(j)(i:i) ! substringwas already possible, so now are the substrings
'0123456789'(i:i) you%name(1:2)Also, zero-length strings are allowed:
page(j)(i:i-1) ! zero-length stringFinally, there are some new intrinsic character functions:
ACHAR IACHAR (for ASCII set) ADJUSTL ADJUSTR LEN_TRIM INDEX(s1, s2, BACK=.TRUE.) REPEAT SCAN (for one of a set) TRIM VERIFY(for all of a set)