Difference between revisions of "Basic Pascal Tutorial/Chapter 1/Constants"

From Lazarus wiki
Jump to navigationJump to search
m (Text replace - "delphi>" to "syntaxhighlight>")
Line 4: Line 4:
  
 
Constants are defined in the constant section of the program:
 
Constants are defined in the constant section of the program:
<delphi>
+
<syntaxhighlight>
 
const
 
const
 
   Identifier1 = value;
 
   Identifier1 = value;
 
   Identifier2 = value;
 
   Identifier2 = value;
 
   Identifier3 = value;
 
   Identifier3 = value;
</delphi>
+
</syntaxhighlight>
 
For example, let's define some constants of various data types: strings, characters, integers, reals, and Booleans. These data types will be further explained in the next section.
 
For example, let's define some constants of various data types: strings, characters, integers, reals, and Booleans. These data types will be further explained in the next section.
<delphi>
+
<syntaxhighlight>
 
const
 
const
 
   Name = 'Tao Yue';
 
   Name = 'Tao Yue';
Line 18: Line 18:
 
   pi = 3.1415926535897932;
 
   pi = 3.1415926535897932;
 
   UsingNCSAMosaic = TRUE;
 
   UsingNCSAMosaic = TRUE;
</delphi>
+
</syntaxhighlight>
 
Note that in Pascal, characters are enclosed in single quotes, or apostrophes (')! This contrasts with newer languages which often use or allow double quotes or Heredoc notation. Standard Pascal does not use or allow double quotes to mark characters or strings.
 
Note that in Pascal, characters are enclosed in single quotes, or apostrophes (')! This contrasts with newer languages which often use or allow double quotes or Heredoc notation. Standard Pascal does not use or allow double quotes to mark characters or strings.
  
Line 24: Line 24:
  
 
Typed constants force a constant to be of a particular data type. For example,
 
Typed constants force a constant to be of a particular data type. For example,
<delphi>
+
<syntaxhighlight>
 
const
 
const
 
   a : real = 12;
 
   a : real = 12;
</delphi>
+
</syntaxhighlight>
  
 
would yield an identifier a which contains a real value 12.0 instead of the integer value 12.
 
would yield an identifier a which contains a real value 12.0 instead of the integer value 12.

Revision as of 14:02, 24 March 2012

1C - Constants (author: Tao Yue, state: unchanged)

Constants are referenced by identifiers, and can be assigned one value at the beginning of the program. The value stored in a constant cannot be changed.

Constants are defined in the constant section of the program:

const
  Identifier1 = value;
  Identifier2 = value;
  Identifier3 = value;

For example, let's define some constants of various data types: strings, characters, integers, reals, and Booleans. These data types will be further explained in the next section.

const
  Name = 'Tao Yue';
  FirstLetter = 'a';
  Year = 1997;
  pi = 3.1415926535897932;
  UsingNCSAMosaic = TRUE;

Note that in Pascal, characters are enclosed in single quotes, or apostrophes (')! This contrasts with newer languages which often use or allow double quotes or Heredoc notation. Standard Pascal does not use or allow double quotes to mark characters or strings.

Constants are useful for defining a value which is used throughout your program but may change in the future. Instead of changing every instance of the value, you can change just the constant definition.

Typed constants force a constant to be of a particular data type. For example,

const
  a : real = 12;

would yield an identifier a which contains a real value 12.0 instead of the integer value 12.

previous contents next