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

From Lazarus wiki
Jump to navigationJump to search
Line 2: Line 2:
  
 
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'':
<font color="#006699"><strong>function</strong></font> <font color="#009966"><strong>Name</strong></font> (parameter_list) : return_type;
+
<delphi>
 +
function Name (parameter_list) : return_type;  
 +
</delphi>
  
 
Functions are called in the main program by using them in expressions:
 
Functions are called in the main program by using them in expressions:
a := Name (5) + 3;
+
<delphi>
 
+
a := Name (5) + 3;
Be careful not to use the name of the function on the right side of any equation inside the function. That is:
+
</delphi>
<font color="#006699"><strong>function</strong></font> <font color="#009966"><strong>Name</strong></font> <font color="#000000"><strong>:</strong></font> <font color="#0099ff"><strong>integer</strong></font><font color="#000000"><strong>;</strong></font>
 
<font color="#006699"><strong>begin</strong></font>
 
  <font color="#009966"><strong>Name</strong></font> <font color="#000000"><strong>:=</strong></font> <font color="#ff0000">2</font><font color="#000000"><strong>;</strong></font>
 
  <font color="#009966"><strong>Name</strong></font> <font color="#000000"><strong>:=</strong></font> <font color="#009966"><strong>Name</strong></font> <font color="#000000"><strong>+</strong></font> <font color="#ff0000">1</font>
 
<font color="#006699"><strong>end</strong></font><font color="#000000"><strong>.</strong></font>
 
  
 +
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:
 +
<delphi>
 +
function Name : integer;
 +
begin
 +
  Name := 2;
 +
  Name := Name + 1
 +
end.
 +
</delphi>
 
is a no-no. Instead of returning the value 3, as might be expected, this sets up an infinite recursive loop. Name will call Name, which will call Name, which will call Name, etc.
 
is a no-no. Instead of returning the value 3, as might be expected, this sets up an infinite recursive loop. 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.
 
The return value is set by assigning a value to the function identifier.
Name := 5;
+
<delphi>
 +
Name := 5;
 +
</delphi>
  
 
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.
 
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.

Revision as of 16:41, 5 January 2010

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: <delphi> function Name (parameter_list) : return_type; </delphi>

Functions are called in the main program by using them in expressions: <delphi> a := Name (5) + 3; </delphi>

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: <delphi> function Name : integer; begin

 Name := 2;
 Name := Name + 1

end. </delphi> is a no-no. Instead of returning the value 3, as might be expected, this sets up an infinite recursive loop. 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. <delphi> Name := 5; </delphi>

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.

previous contents next