Sun Studio 12: Fortran User's Guide

4.2 Data Types

This section describes features and extensions to the Fortran 95 data types.

4.2.1 Boolean Type

f95 supports constants and expressions of Boolean type. However, there are no Boolean variables or arrays, and there is no Boolean type statement.

4.2.1.1 Rules Governing Boolean Type

4.2.1.2 Alternate Forms of Boolean Constants

f95 allows a Boolean constant (octal, hexadecimal, or Hollerith) in the following alternate forms (no binary). Variables cannot be declared Boolean. Standard Fortran does not allow these forms.

Octal

ddddddB, where d is any octal digit

Within an I/O format specification, the letter B indicates binary digits; elsewhere it indicates octal digits.

Hexadecimal

X’ddd or X"ddd", where d is any hexadecimal digit

Hollerith

Accepted forms for Hollerith data are:

nH

’H

""H

nL

’L

""L

nR

’R

""R

Above, “…” is a string of characters and n is the character count.

Examples: Octal and hexadecimal constants.

Boolean Constant  

Internal Octal for 32-bit Word  

0B

00000000000

77740B

00000077740

X"ABE"

00000005276

X"-340"

37777776300

X’1 2 3’

00000000443

X’FFFFFFFFFFFFFFFF’

37777777777

Examples: Octal and hexadecimal in assignment statements.


i = 1357B
j = X"28FF"
k = X’-5A’

Use of an octal or hexadecimal constant in an arithmetic expression can produce undefined results and do not generate syntax errors.

4.2.1.3 Alternate Contexts of Boolean Constants

f95 allows BOZ constants in the places other than DATA statements.

Bbbb

Oooo

Zzzz

B"bbb"

O"ooo"

Z"zzz"

If these are assigned to a real variable, no type conversion occurs.

Standard Fortran allows these only in DATA statements.

4.2.2 Abbreviated Size Notation for Numeric Data Types

f95 allows the following nonstandard type declaration forms in declaration statements, function statements, and IMPLICIT statements. The form in column one is nonstandard Fortran 95, though in common use. The kind numbers in column two can vary by vendor.

Table 4–2 Size Notation for Numeric Data Types

Nonstandard 

Declarator 

Short Form 

Meaning 

INTEGER*1

INTEGER(KIND=1)

INTEGER(1)

One-byte signed integers 

INTEGER*2

INTEGER(KIND=2)

INTEGER(2)

Two-byte signed integers 

INTEGER*4

INTEGER(KIND=4)

INTEGER(4)

Four-byte signed integers 

LOGICAL*1

LOGICAL(KIND=1)

LOGICAL(1)

One-byte logicals 

LOGICAL*2

LOGICAL(KIND=2)

LOGICAL(2)

Two-byte logicals 

LOGICAL*4

LOGICAL(KIND=4)

LOGICAL(4)

Four-byte logicals 

REAL*4

REAL(KIND=4)

REAL(4)

IEEE single-precision four-byte floating-point 

REAL*8

REAL(KIND=8)

REAL(8)

IEEE double-precision eight-byte floating-point 

REAL*16

REAL(KIND=16)

REAL(16)

IEEE quad-precision sixteen-byte floating-point 

COMPLEX*8

COMPLEX(KIND=4)

COMPLEX(4)

Single-precision complex (four bytes each part) 

COMPLEX*16

COMPLEX(KIND=8)

COMPLEX(8)

Double-precision complex (eight bytes each part) 

COMPLEX*32

COMPLEX(KIND=16)

COMPLEX(16)

Quad-precision complex (sixteen bytes each part) 

4.2.3 Size and Alignment of Data Types

Storage and alignment are always given in bytes. Values that can fit into a single byte are byte-aligned.

The size and alignment of types depends on various compiler options and platforms, and how variables are declared. The default maximum alignment in COMMON blocks is to 4-byte boundaries.

Default data alignment and storage allocation can be changed by compiling with special options, such as -aligncommon, -f, -dalign, -dbl_align_all,- xmemalign,, and- xtypemap. The default descriptions in this manual assume that these options are not in force.

There is additional information in the Fortran Programming Guide regarding special cases of data types and alignment on certain platforms.

The following table summarizes the default size and alignment, ignoring other aspects of types and options.

Table 4–3 Default Data Sizes and Alignments (in Bytes)

Fortran 95 Data Type 

Size 

DefaultAlignment 

Alignment inCOMMON  

BYTE X

CHARACTER X

CHARACTER*n X

COMPLEX X

COMPLEX*8 X

DOUBLE COMPLEX X

COMPLEX*16 X

COMPLEX*32 X

16 

16 

32 

8/16 

DOUBLE PRECISION X

REAL X

REAL*4 X

REAL*8 X

REAL*16 X

16 

8/16 

INTEGER X

INTEGER*2 X

INTEGER*4 X

INTEGER*8 X

LOGICAL X

LOGICAL*1 X

LOGICAL*2 X

LOGICAL*4 X

LOGICAL*8 X

Note the following:

Options -f or -dalign force alignment of all 8, 16, or 32-byte data onto 8-byte boundaries. Option -dbl_align_all causes all data to be aligned on 8-byte boundaries. Programs that depend on the use of these options may not be portable.