Difference between revisions of "Routine"

From Free Pascal wiki
Jump to navigationJump to search
(modeswitch)
Line 38: Line 38:
 
By default each routine receives an own copy of each parameter (value parameter).
 
By default each routine receives an own copy of each parameter (value parameter).
 
* If the routine is supposed to work on the original, that means on the [[Variable|variable]] as it exists in the place the routine is called, the modifier [[Var#Pass by Reference|<syntaxhighlight lang="pascal" enclose="none">var</syntaxhighlight>]] will allow that. Thereby the named parameter becomes a [[Variable parameter|variable parameter]].
 
* If the routine is supposed to work on the original, that means on the [[Variable|variable]] as it exists in the place the routine is called, the modifier [[Var#Pass by Reference|<syntaxhighlight lang="pascal" enclose="none">var</syntaxhighlight>]] will allow that. Thereby the named parameter becomes a [[Variable parameter|variable parameter]].
* Furthermore, if <syntaxhighlight lang="pascal" enclose="none">{$modeswitch out on}</syntaxhighlight> (automatically set by various modes), the output parameter type <syntaxhighlight lang="pascal" enclose="none">out</syntaxhighlight> exists. The routine will not, or is not supposed to read from such parameters, but only write.
+
* Furthermore, if <syntaxhighlight lang="pascal" enclose="none">{$modeswitch out+}</syntaxhighlight> (automatically set by various modes), the output parameter type <syntaxhighlight lang="pascal" enclose="none">out</syntaxhighlight> exists. The routine will not, or is not supposed to read from such parameters, but only write.
  
 
=== routine overloading ===
 
=== routine overloading ===

Revision as of 16:20, 18 January 2019

English (en) suomi (fi) français (fr) русский (ru)

A routine is a re-usable piece of source code that performs some functionality. Pascal distinguishes between two kinds of routines: procedures and functions. The latter is capable of returning a result, whilst the former does not return any value. In consequence functions can appear in expressions, but procedures can not.

A routine that is part of an object or class is called method. Properties of objects or classes can redirect read and/or write access to such methods, if their signatures have a certain structure.

routine declarations and definitions

parameters

Routines can be parameterized. When introducing a new routine identifier a parameter list can be appended. For instance the following procedure signature tells the compiler, that doSomething accepts an integer as first parameter.

procedure doSomething(const someParameter: integer);

default values

Parameters can become optional when they are supplied with a default value like so:

procedure doSomething(const someParameter: integer = 42);

Defining default values is only possible in {$mode objFPC} or {$mode Delphi}, and there only for simple types.

Optional parameters if any, have to appear at the end of the formal parameter list. That means, mandatory parameters can not appear after any optional parameter.

parameter hints

While defining the formal parameters in front of each identifier(s), type tuple, the compiler can be supplied with additional hints. The compiler then can make further optimizations.

  • const informs the compiler, that the named parameter(s) won't be changed in the routine definition.
  • constref imposes further restrictions.

parameter types

By default each routine receives an own copy of each parameter (value parameter).

  • If the routine is supposed to work on the original, that means on the variable as it exists in the place the routine is called, the modifier var will allow that. Thereby the named parameter becomes a variable parameter.
  • Furthermore, if {$modeswitch out+} (automatically set by various modes), the output parameter type out exists. The routine will not, or is not supposed to read from such parameters, but only write.

routine overloading

Routines can be overloaded. That means, one and the same identifier can be associated with varying definitions provided the formal signatures differ.

definition

In order to define a routine, its signature is followed by a block.

The parameters are available by their identifiers inside the statement-frame and nested routines. In functions additional identifiers are available, in order to set the function's return value.

invoking routines

Routines are called by stating their identifiers, followed by the list of (mandatory) parameter literals or variables their types are compatible. Depending on the routine's type, i.e. either procedure or function, routine calls are only allowed as statements or in expressions, or even both.

comparative remarks

The definition of a routine always concludes with a return-instruction. Thus the control flow is always handed back to the LOC the routine was invoked at. In contrast to that behavior, goto jumps can be abused to circumvent that “limitation”.

Every routine call is preceded by proper allocation of parameter values.