Difference between revisions of "Becomes"

From Free Pascal wiki
Jump to navigationJump to search
Line 57: Line 57:
  
 
== syntax justification ==
 
== syntax justification ==
The rationale of using two characters for assignment instead of just one, say the <syntaxhighlight lang="pascal" enclose="none">=</syntaxhighlight>&nbsp;sign, is to distinguish between assigning values and comparing for equality.
+
The rationale of using two characters for assignment instead of just one, say the {{HL|1= =}}&nbsp;sign, is to distinguish between assigning values and comparing for equality.
 
It's got its roots in the field of mathematics where a single equal sign is read as an expression, but has no imperative connotation.
 
It's got its roots in the field of mathematics where a single equal sign is read as an expression, but has no imperative connotation.
  
Line 65: Line 65:
 
</syntaxhighlight>
 
</syntaxhighlight>
 
The semantics of this line of code varies among every programming language.
 
The semantics of this line of code varies among every programming language.
For instance, in [[Fortran]] and in Basic this line means “Compare the values <syntaxhighlight lang="C" enclose="none">m</syntaxhighlight>&nbsp;and <syntaxhighlight lang="C" enclose="none">x</syntaxhighlight>, and if they are equal to each other <syntaxhighlight lang="C" enclose="none">n</syntaxhighlight> becomes <syntaxhighlight lang="C" enclose="none">true</syntaxhighlight>, <syntaxhighlight lang="C" enclose="none">false</syntaxhighlight> otherwise.”
+
* in [[Fortran]] and in Basic this line means “Compare the values {{HLC|m}}&nbsp;and {{HLC|x}}, and if they are equal to each other, set {{HLC|n}} ro the value {{HLC|true}}, otherwise set it to the value {{HLC|false}}.”
In contrast to that the C&nbsp;programming language will assign <syntaxhighlight lang="C" enclose="none">m</syntaxhighlight> the value of <syntaxhighlight lang="C" enclose="none">x</syntaxhighlight>, and subsequently assign the <syntaxhighlight lang="C" enclose="none">n</syntaxhighlight> the value of <syntaxhighlight lang="C" enclose="none">m</syntaxhighlight>, so <syntaxhighlight lang="C" enclose="none">n</syntaxhighlight> and <syntaxhighlight lang="C" enclose="none">m</syntaxhighlight> both have the value <syntaxhighlight lang="C" enclose="none">x</syntaxhighlight>.
+
* In the C&nbsp;programming language this construct will assign {{HLC|m}} the value of {{HLC|x}}, and subsequently assign to {{HLC|n}} the value of {{HLC|m}}, so {{HLC|n}} and {{HLC|m}} both have the value of {{HLC|x}}.
 
This sort of code has been a common source of errors, compilers nowadays even emit warnings when encountering multiple assignment in a single line.
 
This sort of code has been a common source of errors, compilers nowadays even emit warnings when encountering multiple assignment in a single line.
  

Revision as of 13:32, 16 October 2020

English (en) suomi (fi) français (fr) русский (ru) 中文(中国大陆)‎ (zh_CN)

:=

The character pair :=, that are a colon and an equal sign back to back, is pronounced as “becomes” and used by Pascal as the assignment operator.

assignment

For valid assignments := is surrounded by a single variable identifier on the left hand (possibly doing a variable typecast), and an expression evaluating to the data type the variable is declared as on the right hand.

program assignmentDemo(input, output, stderr);

const
	diameter = 6;

var
	n: integer;
	area: real;
	givenName: string;

begin
	n := 42;
	area := pi() * diameter;
	givenName := 'Smith';
	n := 1000 - n div 2;
end.

Assignments to variables of a subrange type should be handled with care. The compiler can only yield out-of-range errors for constant expressions, i.e. not depending on any run-time data. With {$rangeChecks} enabled a run-time error can be generated.

program assignmentRange(input, output, stderr);

type
	naturalNumber = 1..high(longword);

var
	n: naturalNumber;

begin
	{$rangechecks on}
	n := 1;           // is OK
	n := -42 + n;     // will cause RTE 201
end.

handling of special data types

Where simple data types like integers and characters are realized as mov instructions or alike, data types that require initialization and finalization such as ansistrings or classes need special care.

The compiler will generate appropriate code copying data for following data types.

You don't have to iterate over all components copying each element by hand as it is required in other programming languages.

syntax justification

The rationale of using two characters for assignment instead of just one, say the = sign, is to distinguish between assigning values and comparing for equality. It's got its roots in the field of mathematics where a single equal sign is read as an expression, but has no imperative connotation.

In comparison other languages than Pascal allow to write

n = m = x;

The semantics of this line of code varies among every programming language.

  • in Fortran and in Basic this line means “Compare the values m and x, and if they are equal to each other, set n ro the value true, otherwise set it to the value false.”
  • In the C programming language this construct will assign m the value of x, and subsequently assign to n the value of m, so n and m both have the value of x.

This sort of code has been a common source of errors, compilers nowadays even emit warnings when encountering multiple assignment in a single line.

In Pascal the code excerpt above is illegal. Non-productive statements are not allowed, i.e. something has to be done.

see also


navigation bar: topic: Pascal symbols
single characters

+ (plus)  •  - (minus)  •  * (asterisk)  •  / (slash)
= (equal)  •  > (greater than)  •  < (less than)
. (period)  •  : (colon)  •  ; (semi colon)
^ (hat)  •  @ (at)
$ (dollar sign)  •  & (ampersand)  •  # (hash)
' (single quote)

character pairs

<> (not equal)  •  <= (less than or equal)  •  := (becomes)  •  >= (greater than or equal)

 •  >< (symmetric difference)  •  // (double slash)