Difference between revisions of "Basic Pascal Tutorial/Chapter 3/IF"

From Lazarus wiki
Jump to navigationJump to search
m (Fixed syntax highlighting)
(extra semicolon rule on else)
Line 6: Line 6:
  
  
3Ca - IF (author: Tao Yue, state: unchanged)
+
3Ca - IF (author: Tao Yue, state: changed)
  
 
The <tt>IF</tt> statement allows you to branch based on the result of a Boolean operation. The one-way branch format is:
 
The <tt>IF</tt> statement allows you to branch based on the result of a Boolean operation. The one-way branch format is:
Line 36: Line 36:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Note there is no <tt>;</tt> following the statement before the <tt>else</tt>, even for the case with compound statements.
+
Note (with one special exception explained below) there is no <tt>;</tt> following the statement before the <tt>else</tt>, even for the case with compound statements.
  
 
<syntaxhighlight lang=pascal>
 
<syntaxhighlight lang=pascal>
Line 52: Line 52:
  
  
If the Boolean expression evaluates to <tt>FALSE</tt>, the statement following the <tt>else</tt> will be performed. Note that you may not use a semicolon after the statement preceding the <tt>else</tt>. That causes the computer to treat it as a one-way selection, leaving it to wonder where the else came from.
+
If the Boolean expression evaluates to <tt>FALSE</tt>, the statement following the <tt>else</tt> will be performed. Note that (again, with one exception explained below) you may not use a semicolon after the statement preceding the <tt>else</tt>. That causes the computer to treat it as a one-way selection, leaving it to wonder where the else came from.
  
 
If you need multi-way selection, simply nest <tt>if</tt> statements:
 
If you need multi-way selection, simply nest <tt>if</tt> statements:
Line 96: Line 96:
 
   Statement1;
 
   Statement1;
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
Or you could use a <tt>begin-end</tt> block.
  
Or you could use a <tt>begin-end</tt> block. But the best way to clean up the code would be to rewrite the condition.
+
''However,'' there is one special exception for just this case where a semicolon is not only allowed before an else statement, it is ''mandatory.'' Here is where it is required:
 +
<syntaxhighlight lang=pascal>
 +
if Condition1 then
 +
  if Condition2 then
 +
    Statement2;
 +
else
 +
  Statement1;
 +
</syntaxhighlight>
 +
In this particular example, the semicolon before the else warns the compiler that the else applies to the prior If statement. This particular situation - where there are two If statements, one after the other, and the else clause applies to the first statement only. Because most programmers "know" that you can't have a semicolon before an else you probably won't see it much if at all, but you should be aware of it.
 +
 
 +
But the best way to clean up the code would be to rewrite the condition.
  
 
<syntaxhighlight lang=pascal>
 
<syntaxhighlight lang=pascal>

Revision as of 07:40, 5 December 2020

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

 ◄   ▲   ► 


Back to Reserved words.


3Ca - IF (author: Tao Yue, state: changed)

The IF statement allows you to branch based on the result of a Boolean operation. The one-way branch format is:

if BooleanExpression then
  StatementIfTrue;

If the Boolean expression evaluates to true, the statement executes. Otherwise, it is skipped.

The IF statement accepts only one statement. If you would like to branch to a compound statement, you must use a begin-end block to enclose the statements:

if BooleanExpression then
begin
  Statement1;
  Statement2;
end;

There is also a two-way selection:

if BooleanExpression then
  StatementIfTrue
else
  StatementIfFalse;

Note (with one special exception explained below) there is no ; following the statement before the else, even for the case with compound statements.

if BooleanExpression then
begin
  Statement1;
  Statement2;
end
else
begin
  Statement3;
  Statement4;
end;


If the Boolean expression evaluates to FALSE, the statement following the else will be performed. Note that (again, with one exception explained below) you may not use a semicolon after the statement preceding the else. That causes the computer to treat it as a one-way selection, leaving it to wonder where the else came from.

If you need multi-way selection, simply nest if statements:

if Condition1 then
  Statement1
else
  if Condition2 then
    Statement2
  else
    Statement3;

Be careful with nesting. Sometimes the computer won't do what you want it to do:

if Condition1 then
  if Condition2 then
    Statement2
else
  Statement1;

The else is always matched with the most recent if, so the computer interprets the preceding block of code as:

if Condition1 then
  if Condition2 then
    Statement2
  else
    Statement1;

You can get by with a null statement:

if Condition1 then
  if Condition2 then
    Statement2
  else
else
  Statement1;

Or you could use a begin-end block.

However, there is one special exception for just this case where a semicolon is not only allowed before an else statement, it is mandatory. Here is where it is required:

if Condition1 then
  if Condition2 then
    Statement2;
else
  Statement1;

In this particular example, the semicolon before the else warns the compiler that the else applies to the prior If statement. This particular situation - where there are two If statements, one after the other, and the else clause applies to the first statement only. Because most programmers "know" that you can't have a semicolon before an else you probably won't see it much if at all, but you should be aware of it.

But the best way to clean up the code would be to rewrite the condition.

if not Condition1 then
  Statement1
else
  if Condition2 then
    Statement2;

This example illustrates where the not operator comes in very handy. If Condition1 had been a Boolean like: (not(a < b) or (c + 3 > 6)) and g, reversing the expression would be more difficult than NOTting it.

Also notice how important indentation is to convey the logic of program code to a human, but the compiler ignores the indentation.

 ◄   ▲   ►