Difference between revisions of "End"

From Free Pascal wiki
Jump to navigationJump to search
m (replace legacy syntaxhighlight syntax; fix spelling mistake; fix syntax)
 
(9 intermediate revisions by 6 users not shown)
Line 1: Line 1:
The '''end''' [[Keyword|keyword]] closes a [[Block]] of instructions started with the [[Begin|begin]] or [[Case|case]] keyword, ends the declaration of [[field]]s of a [[Record|record]], or closes a [[Try|try]] .. [[Finally|finally]] or [[Try|try]] .. [[Except|except]] construct.  It is also used to close a [[Unit|unit]] having no initialization code.
+
{{end}}
 +
 
 +
The [[Keyword|keyword]] <syntaxhighlight lang="pascal" inline>end</syntaxhighlight> terminates an entity.
 +
It appears at several occasions:
 +
 
 +
* to mark the end of a module, i.e. a [[Program|<syntaxhighlight lang="pascal" inline>program</syntaxhighlight>]], [[Unit|<syntaxhighlight lang="pascal" inline>unit</syntaxhighlight>]] or [[Library|<syntaxhighlight lang="pascal" inline>library</syntaxhighlight>]]
 +
* to conclude a [[Block|block]] of statements or instructions respectively
 +
** either started by [[Begin|<syntaxhighlight lang="pascal" inline>begin</syntaxhighlight>]], or
 +
** started by [[Asm|<syntaxhighlight lang="delphi" inline>asm</syntaxhighlight>]]
 +
* to wrap up some language constructs:
 +
** most prominently [[If and Then|<syntaxhighlight lang="pascal" inline>if … then … end</syntaxhighlight>]], or
 +
** [[Case|<syntaxhighlight lang="pascal" inline>case</syntaxhighlight>]] … [[Of|<syntaxhighlight lang="pascal" inline>of</syntaxhighlight>]] … <syntaxhighlight lang="pascal" inline>end</syntaxhighlight>, but also
 +
** [[Try, Except and Finally|<syntaxhighlight lang="delphi" inline>try … except … finally … end</syntaxhighlight>]]
 +
* to finish off certain [[Type|type]] declarations, such as [[Object|<syntaxhighlight lang="delphi" inline>object</syntaxhighlight>]], [[Record|<syntaxhighlight lang="pascal" inline>record</syntaxhighlight>]] and [[Class|<syntaxhighlight lang="delphi" inline>class</syntaxhighlight>]]
 +
* in [[Extended Pascal|extended Pascal]] <syntaxhighlight lang="pascal" inline>to end do …</syntaxhighlight> starts the definition of the [[Finalization|<syntaxhighlight lang="pascal" inline>finalization</syntaxhighlight> part of a module]]
  
 
For example:
 
For example:
<delphi>
 
  procedure Proc1;
 
 
 
  var a,b: integer;
 
 
 
  begin
 
    (..)
 
  end;
 
</delphi>
 
  
The end statement is one of the exceptions to the rule that every statement must be followed by a semicolon.  The statement immediately preceding an end statement does not require a semicolon.
+
<syntaxhighlight lang="pascal" highlight="6">
 +
procedure proc0;
 +
var
 +
a, b: integer;
 +
begin
 +
 +
end;
 +
</syntaxhighlight>
  
It is also used to end a pascal source file, in which case it is followed by a period rather than a [[;|semicolon]] (in the example below, the last semicolon is optional):
+
The <syntaxhighlight lang="pascal" inline>end</syntaxhighlight> gloss is one of the exceptions to the rule that every statement must be followed by a [[Semicolon|semicolon]].
 +
The statement immediately preceding an <syntaxhighlight lang="pascal" inline>end</syntaxhighlight> does not require a semicolon.
  
<delphi>  
+
It is also used to end a Pascal module, in which case it is followed by a [[period]] rather than a semicolon (in the example below, the last semicolon is optional):
  program Proc2;
+
<syntaxhighlight lang="delphi" highlight="10,11">
  var
+
program proc1;
    SL: TStrings;
+
var
  begin
+
SL: TStrings;
    SL := TStringlist.Create;
+
begin
    try
+
SL := TStringlist.create;
      (..)
+
try
    finally
+
      SL.Free;
+
finally
    end;
+
SL.free;
  end.
+
end;
</delphi>
+
end.
 
+
</syntaxhighlight>
For a UNIT which contains no initialization, END is used to indicate the end of the unit:
 
  
<delphi>
+
<syntaxhighlight lang="pascal" inline>end</syntaxhighlight> is used to indicate the end of the unit:
 +
<syntaxhighlight lang=pascal>
 
   unit detent;
 
   unit detent;
 
   uses math;
 
   uses math;
Line 48: Line 61:
 
   
 
   
 
   ...
 
   ...
+
  (* Note: No corresponding '''begin''' statement *)
(* Note: No '''begin''' statement *)
 
 
   
 
   
 
   end.
 
   end.
</delphi>
+
</syntaxhighlight>
  
 
It also closes a [[Record|record]]:
 
It also closes a [[Record|record]]:
<delphi>
+
 
 +
<syntaxhighlight lang="pascal">
 
  Type
 
  Type
 
   ExampleRecord = Record
 
   ExampleRecord = Record
Line 62: Line 75:
 
                     Average: Real { holds the average or mean of the values in the array }
 
                     Average: Real { holds the average or mean of the values in the array }
 
                   End;
 
                   End;
</delphi>
+
</syntaxhighlight>
  
 
{{Keywords}}
 
{{Keywords}}

Latest revision as of 23:49, 24 June 2020

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

The keyword end terminates an entity. It appears at several occasions:

For example:

procedure proc0;
var
	a, b: integer;
begin
	
end;

The end gloss is one of the exceptions to the rule that every statement must be followed by a semicolon. The statement immediately preceding an end does not require a semicolon.

It is also used to end a Pascal module, in which case it is followed by a period rather than a semicolon (in the example below, the last semicolon is optional):

program proc1;
var
	SL: TStrings;
begin
	SL := TStringlist.create;
	try
		
	finally
		SL.free;
	end;
end.

end is used to indicate the end of the unit:

  unit detent;
  uses math;
 
  procedure delta(r:real);
 
  implementation
 
  procedure delta;
  begin
 
  ...
 
  end;
 
  ...
  (* Note: No corresponding '''begin''' statement *)
 
  end.

It also closes a record:

 Type
   ExampleRecord = Record
                     Values: array [1..200] of real;
                     NumValues: Integer; { holds the actual number of points in the array }
                     Average: Real { holds the average or mean of the values in the array }
                   End;


Keywords: begindoelseendforifrepeatthenuntilwhile