Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
STANDART PASCAL ISO 1990.doc
Скачиваний:
5
Добавлен:
17.11.2019
Размер:
251.66 Кб
Скачать

6.6.2 Function-declarations

function-declaration = function-heading ';' directive

½ function-identification ';' function-block

½ function-heading ';' function-block .

function-heading = 'function' identifier [ formal-parameter-list ] ':' result-type .

function-identification = 'function' function-identifier .

function-identifier = identifier .

result-type = simple-type-identifier ½ pointer-type-identifier .

function-block = block .

The occurrence of a formal-parameter-list in a function-heading of a function-declaration shall define the formal-parameters of the function-block, if any, associated with the identifier of the function-heading to be those of the formal-parameter-list. The function-block shall contain at least one assignment-statement such that the function-identifier of the assignment-statement is associated with the block (see 6.8.2.2).

The occurrence of an identifier in the function-heading of a function-declaration shall constitute its defining-point as a function-identifier associated with the result type denoted by the result-type for the region that is the block closest-containing the function-declaration.

Each identifier having a defining-point as a function-identifier in the function-heading of a function-declaration in which the directive forward occurs shall have exactly one of its applied occurrences in a function-identification of a function-declaration, and this applied occurrence shall be closest-contained by the procedure-and-function-declaration-part closest-containing the function-heading.

The occurrence of a function-block in a function-declaration shall associate the function-block with the identifier in the function-heading, or with the function-identifier in the function-identification, of the function-declaration; the block of the function-block shall be associated with the result type that is associated with the identifier or function-identifier.

There shall be at most one function-block associated with a function-identifier.

Example of a procedure-and-function-declaration-part:

function Sqrt (x : real) : real;

{This function computes the square root of x (x > 0) using Newton's method.}

var

old, estimate : real;

begin

estimate := x;

repeat

old := estimate;

estimate := (old + x / old) * 0.5;

until abs(estimate - old) < eps * estimate;

{eps being a global constant}

Sqrt := estimate

end {of Sqrt};

function max (a : vector) : real;

{This function finds the largest component of the value of a.}

var

largestsofar : real;

fence : indextype;

begin

largestsofar := a[1];

{ Establishes largestsofar = max(a[1]) }

for fence := 2 to limit do begin

if largestsofar < a[fence] then largestsofar := a[fence]

{ Re-establishing largestsofar = max(a[1], ... ,a[fence]) }

end;

{ So now largestsofar = max(a[1], ... ,a[limit]) }

max := largestsofar

end {of max};

function GCD (m, n : natural) : natural;

begin

if n=0 then GCD := m else GCD := GCD(n, m mod n);

end;

{The following two functions analyze a parenthesized expression and convert it to an internal form.

They are declared forward since they are mutually recursive, i.e., they call each other.

These function-declarations use the following identifiers that are not defined in this International

Standard: formula, IsOpenParenthesis, IsOperator, MakeFormula, nextsym, operation, ReadElement,

ReadOperator, and SkipSymbol.}

function ReadExpression : formula; forward;

function ReadOperand : formula; forward;

function ReadExpression; {See forward declaration of heading.}

var

this : formula;

op : operation;

begin

this := ReadOperand;

while IsOperator(nextsym) do

begin

op := ReadOperator;

this := MakeFormula(this, op, ReadOperand);

end;

ReadExpression := this

end;

function ReadOperand; {See forward declaration of heading.}

begin

if IsOpenParenthesis(nextsym) then

begin

SkipSymbol;

ReadOperand := ReadExpression;

{nextsym should be a close-parenthesis}

SkipSymbol

end

else ReadOperand := ReadElement

end;

Соседние файлы в предмете [НЕСОРТИРОВАННОЕ]