Difference between revisions of "Basic Pascal Tutorial/Chapter 4/Functions"

From Lazarus wiki
Jump to navigationJump to search
(Statement about infinite recursion is valid only for certain language modes in FPC)
m (Fixed syntax highlighting)
Line 5: Line 5:
  
 
Functions work the same way as procedures, but they always ''return a single value'' to the main program through its ''own name'':
 
Functions work the same way as procedures, but they always ''return a single value'' to the main program through its ''own name'':
<syntaxhighlight>
+
<syntaxhighlight lang=pascal>
 
function Name (parameter_list) : return_type;  
 
function Name (parameter_list) : return_type;  
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
Functions are called in the main program by using them in expressions:
 
Functions are called in the main program by using them in expressions:
<syntaxhighlight>
+
<syntaxhighlight lang=pascal>
 
a := Name (5) + 3;
 
a := Name (5) + 3;
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
If your function has no argument, be careful not to use the name of the function on the right side of any equation inside the function. That is:
 
If your function has no argument, be careful not to use the name of the function on the right side of any equation inside the function. That is:
<syntaxhighlight>
+
<syntaxhighlight lang=pascal>
 
function Name : integer;
 
function Name : integer;
 
begin
 
begin
Line 25: Line 25:
  
 
The return value is set by assigning a value to the function identifier.
 
The return value is set by assigning a value to the function identifier.
<syntaxhighlight>
+
<syntaxhighlight lang=pascal>
 
Name := 5;
 
Name := 5;
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 05:21, 16 February 2020

български (bg) English (en) français (fr) 日本語 (ja) 中文(中国大陆)‎ (zh_CN)

 ◄   ▲   ► 

4C - Functions (author: Tao Yue, state: unchanged)

Functions work the same way as procedures, but they always return a single value to the main program through its own name:

function Name (parameter_list) : return_type;

Functions are called in the main program by using them in expressions:

a := Name (5) + 3;

If your function has no argument, be careful not to use the name of the function on the right side of any equation inside the function. That is:

function Name : integer;
begin
  Name := 2;
  Name := Name + 1
end.

is a no-no. Instead of returning the value 3, as might be expected, this sets up an infinite recursive loop in certain language modes (e.g. {$MODE DELPHI} or {$MODE TP}; other modes require brackets for function call even if the brackets are empty due to no parameters being required for the particular function). Name will call Name, which will call Name, which will call Name, etc.

The return value is set by assigning a value to the function identifier.

Name := 5;

It is generally bad programming form to make use of VAR parameters in functions -- functions should return only one value. You certainly don't want the sin function to change your pi radians to 0 radians because they're equivalent -- you just want the answer 0.

 ◄   ▲   ►