Difference between revisions of "Char"

From Free Pascal wiki
Jump to navigationJump to search
(spelling correction)
m (tiny alignment of two statements)
Line 6: Line 6:
 
<syntaxhighlight>
 
<syntaxhighlight>
 
  var ch: char;
 
  var ch: char;
    c: byte;  
+
      c: byte;  
  
 
  begin
 
  begin

Revision as of 06:58, 28 October 2014

Deutsch (de) English (en) español (es) français (fr) italiano (it) русский (ru)

A char is a single character. A byte and a char are the same thing, except a char can be used as a character, or as part of a string type, and cannot be used in an arithmetic expression, while a byte can only be referred to as a numeric type.

For example:

 var ch: char;
      c: byte; 

 begin
   ch := 'A';  c := 64;  { are the same action, and are legal }
   ch := 64;   c := 'A'; { while they are the same action, this is illegal }
 end.

The use of char or byte as a data type provides better documentation as to the purpose of the use of the particular variable. The char type can be coerced to byte by using the ord function. Byte type values can be coerced to char by using the chr function.

type chars functions follows the ASCII.

The above program corrected to legal use:

 var ch: char;
      c: byte; 

 begin
    ch := 'A';     c := 64;       { are the same action, and are legal }
    ch := chr(64); c := ord('A'); { now legal }
 end.

See also


navigation bar: data types
simple data types

boolean byte cardinal char currency double dword extended int8 int16 int32 int64 integer longint real shortint single smallint pointer qword word

complex data types

array class object record set string shortstring