home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 February / Chip_2000-02_cd.bin / zkuste / freesoft / freepascal / ref.txt < prev    next >
Text File  |  1999-12-19  |  294KB  |  8,857 lines

  1. Free Pascal :
  2. Reference guide.
  3.  
  4.                         Reference guide for Free Pascal, version 0.99.12
  5.                                                                      1.6
  6.                                                               July 1999
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16. Micha¿el Van Canneyt
  17.  
  18.  
  19.  
  20. Contents
  21.  
  22. I The Pascal language                                                              10
  23.  
  24. 1 Pascal Tokens                                                                     11
  25.   1.1 Symbols . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
  26.   1.2 Comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
  27.   1.3 Reserved words . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
  28.        Turbo Pascal reserved words . . . . . . . . . . . . . . . . . . . . . . 12
  29.        Delphi reserved words . . . . . . . . . . . . . . . . . . . . . . . . . . 13
  30.        Free Pascal reserved words . . . . . . . . . . . . . . . . . . . . . . . . 13
  31.        Modifiers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
  32.   1.4 Identifiers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
  33.   1.5 Numbers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
  34.   1.6 Labels . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
  35.   1.7 Character strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
  36.  
  37. 2 Constants                                                                         16
  38.   2.1 Ordinary constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
  39.   2.2 Typed constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
  40.  
  41. 3 Types                                                                             18
  42.   3.1 Base types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
  43.        Ordinal types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
  44.        Real types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
  45.   3.2 Character types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
  46.        Char . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
  47.        Strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
  48.        Short strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
  49.        Ansistrings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24
  50.        Constant strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
  51.        PChar . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
  52.   3.3 Structured Types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
  53.        Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
  54.  
  55.  
  56.                                          1
  57.  
  58.  
  59.  
  60.                                                                         CONTENTS
  61.  
  62.  
  63.        Record types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
  64.        Set types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
  65.        File types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
  66.   3.4 Pointers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
  67.   3.5 Procedural types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
  68.  
  69. 4 Objects                                                                          37
  70.   4.1 Declaration . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
  71.   4.2 Fields . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
  72.   4.3 Constructors and destructors . . . . . . . . . . . . . . . . . . . . . . 39
  73.   4.4 Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40
  74.   4.5 Method invocation . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
  75.   4.6 Visibility . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
  76.  
  77. 5 Classes                                                                          45
  78.   5.1 Class definitions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
  79.   5.2 Class instantiation . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
  80.   5.3 Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
  81.        invocation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
  82.        Virtual methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
  83.        Message methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
  84.   5.4 Properties . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
  85.  
  86. 6 Expressions                                                                      53
  87.   6.1 Expression syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
  88.   6.2 Function calls . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
  89.   6.3 Set constructors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
  90.   6.4 Value typecasts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
  91.   6.5 The @ operator . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
  92.   6.6 Operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
  93.        Arithmetic operators . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
  94.        Logical operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
  95.        Boolean operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
  96.        String operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
  97.        Set operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
  98.        Relational operators . . . . . . . . . . . . . . . . . . . . . . . . . . . 61
  99.  
  100. 7 Statements                                                                       62
  101.   7.1 Simple statements . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
  102.        Assignments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
  103.        Procedure statements . . . . . . . . . . . . . . . . . . . . . . . . . . 63
  104.  
  105.  
  106.                                          2
  107.  
  108.  
  109.  
  110.                                                                         CONTENTS
  111.  
  112.  
  113.        Goto statements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 64
  114.   7.2 Structured statements . . . . . . . . . . . . . . . . . . . . . . . . . . 64
  115.        Compound statements . . . . . . . . . . . . . . . . . . . . . . . . . . 65
  116.        The Case statement . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
  117.        The If..then..else statement . . . . . . . . . . . . . . . . . . . . . 67
  118.        The For..to/downto..do statement . . . . . . . . . . . . . . . . . . 68
  119.        The Repeat..until statement . . . . . . . . . . . . . . . . . . . . . 69
  120.        The While..do statement . . . . . . . . . . . . . . . . . . . . . . . . 69
  121.        The With statement . . . . . . . . . . . . . . . . . . . . . . . . . . . 70
  122.        Exception Statements . . . . . . . . . . . . . . . . . . . . . . . . . . 71
  123.   7.3 Assembler statements . . . . . . . . . . . . . . . . . . . . . . . . . . 71
  124.  
  125. 8 Using functions and procedures                                                    73
  126.   8.1 Procedure declaration . . . . . . . . . . . . . . . . . . . . . . . . . . 73
  127.   8.2 Function declaration . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
  128.   8.3 Parameter lists . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
  129.        Value parameters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
  130.        Variable parameters . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
  131.        Constant parameters . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
  132.        Open array parameters . . . . . . . . . . . . . . . . . . . . . . . . . . 76
  133.   8.4 Function overloading . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
  134.   8.5 Forward defined functions . . . . . . . . . . . . . . . . . . . . . . . . 77
  135.   8.6 External functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
  136.   8.7 Assembler functions . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
  137.   8.8 Modifiers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
  138.        Public . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
  139.        cdecl . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
  140.        popstack . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
  141.        Export . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
  142.        StdCall . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
  143.        Alias . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
  144.   8.9 Unsupported Turbo Pascal modifiers . . . . . . . . . . . . . . . . . . 82
  145.  
  146. 9 Programs, units, blocks                                                           83
  147.   9.1 Programs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83
  148.   9.2 Units . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
  149.   9.3 Blocks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
  150.   9.4 Scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
  151.        Block scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
  152.        Record scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
  153.        Class scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
  154.  
  155.                                          3
  156.  
  157.  
  158.  
  159.                                                                          CONTENTS
  160.  
  161.  
  162.        Unit scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
  163.   9.5 Libraries . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88
  164.  
  165. 10 Exceptions                                                                        90
  166.   10.1 The raise statement . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
  167.   10.2 The try...except statement . . . . . . . . . . . . . . . . . . . . . . . . 91
  168.   10.3 The try...finally statement . . . . . . . . . . . . . . . . . . . . . . . . 92
  169.   10.4 Exception handling nesting . . . . . . . . . . . . . . . . . . . . . . . 93
  170.   10.5 Exception classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93
  171.  
  172. 11 Using assembler                                                                   94
  173.   11.1 Assembler statements . . . . . . . . . . . . . . . . . . . . . . . . . . 94
  174.   11.2 Assembler procedures and functions . . . . . . . . . . . . . . . . . . 94
  175.  
  176.  
  177. II Reference : The System unit                                                      96
  178.  
  179. 12 The system unit                                                                   97
  180.   12.1 Types, Constants and Variables . . . . . . . . . . . . . . . . . . . . . 97
  181.        Types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
  182.        Constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
  183.        Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
  184.   12.2 Functions and Procedures . . . . . . . . . . . . . . . . . . . . . . . . 99
  185.        Abs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
  186.        Addr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
  187.        Append . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 100
  188.        Arctan . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 100
  189.        Assign . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 100
  190.        Assigned . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101
  191.        BinStr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101
  192.        Blockread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102
  193.        Blockwrite . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103
  194.        Break . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103
  195.        Chdir . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 104
  196.        Chr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 104
  197.        Close . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 104
  198.        Concat . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 105
  199.        Continue . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 105
  200.        Copy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 106
  201.        Cos . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107
  202.        CSeg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107
  203.        Dec . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107
  204.  
  205.                                           4
  206.  
  207.  
  208.  
  209.                                                                   CONTENTS
  210.  
  211.  
  212. Delete . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 108
  213. Dispose . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 108
  214. DSeg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 109
  215. Eof . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 110
  216. Eoln . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 110
  217. Erase . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 111
  218. Exit . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 111
  219. Exp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 112
  220. Filepos . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113
  221. Filesize . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 114
  222. Fillchar . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 114
  223. Fillword . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 115
  224. Flush . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 115
  225. Frac . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 116
  226. Freemem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 116
  227. Getdir . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 117
  228. Getmem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 117
  229. Halt . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 117
  230. HexStr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 118
  231. Hi . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 118
  232. High . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119
  233. Inc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 120
  234. Insert . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 120
  235. Int . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 121
  236. IOresult . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 121
  237. Length . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 122
  238. Ln . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 123
  239. Lo . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 123
  240. LongJmp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 124
  241. Low . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 124
  242. Lowercase . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 124
  243. Mark . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 125
  244. Maxavail . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 125
  245. Memavail . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 126
  246. Mkdir . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 127
  247. Move . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 127
  248. New . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 127
  249. Odd . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 128
  250. Ofs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 128
  251. Ord . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 128
  252.  
  253.  
  254.                                    5
  255.  
  256.  
  257.  
  258.                                                                   CONTENTS
  259.  
  260.  
  261. Paramcount . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 129
  262. Paramstr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 129
  263. Pi . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 130
  264. Pos . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 130
  265. Power . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 131
  266. Pred . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 131
  267. Ptr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 131
  268. Random . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 132
  269. Randomize . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 132
  270. Read . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 133
  271. Readln . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 133
  272. Release . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 134
  273. Rename . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 134
  274. Reset . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 134
  275. Rewrite . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 135
  276. Rmdir . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 136
  277. Round . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 136
  278. Runerror . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137
  279. Seek . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137
  280. SeekEof . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 138
  281. SeekEoln . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 138
  282. Seg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 139
  283. SetJmp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 139
  284. SetLength . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 140
  285. SetTextBuf . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 140
  286. Sin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 141
  287. SizeOf . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 142
  288. Sptr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 142
  289. Sqr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 143
  290. Sqrt . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 143
  291. SSeg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 143
  292. Str . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 144
  293. Succ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 144
  294. Swap . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 144
  295. Trunc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145
  296. Truncate . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145
  297. Upcase . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 146
  298. Val . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 146
  299. Write . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 147
  300. WriteLn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 147
  301.  
  302.  
  303.                                    6
  304.  
  305.  
  306.  
  307. List of Tables
  308.  
  309.  3.1 Predefined ordinal types . . . . . . . . . . . . . . . . . . . . . . . . . 19
  310.  3.2 Predefined integer types . . . . . . . . . . . . . . . . . . . . . . . . . 20
  311.  3.3 Boolean types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
  312.  3.4 Supported Real types . . . . . . . . . . . . . . . . . . . . . . . . . . 23
  313.  3.5 AnsiString memory structure . . . . . . . . . . . . . . . . . . . . . . 24
  314.  3.6 PChar pointer arithmetic . . . . . . . . . . . . . . . . . . . . . . . . . 27
  315.  3.7 Set Manipulation operators . . . . . . . . . . . . . . . . . . . . . . . 32
  316.  
  317.  6.1 Precedence of operators . . . . . . . . . . . . . . . . . . . . . . . . . 53
  318.  6.2 Binary arithmetic operators . . . . . . . . . . . . . . . . . . . . . . . 59
  319.  6.3 Unary arithmetic operators . . . . . . . . . . . . . . . . . . . . . . . 59
  320.  6.4 Logical operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
  321.  6.5 Boolean operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
  322.  6.6 Set operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61
  323.  6.7 Relational operators . . . . . . . . . . . . . . . . . . . . . . . . . . . 61
  324.  
  325.  7.1 Allowed C constructs in Free Pascal . . . . . . . . . . . . . . . . . . 63
  326.  
  327.  8.1 Unsupported modifiers . . . . . . . . . . . . . . . . . . . . . . . . . . 82
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.                                        7
  347.  
  348.  
  349.  
  350.                                                                  LIST OF TABLES
  351.  
  352.  
  353. About this guide
  354.  
  355. This document describes all constants, types, variables, functions and procedures as
  356. they are declared in the system unit. Furthermore, it describes all pascal constructs
  357. supported by Free Pascal, and lists all supported data types. It does not, however,
  358. give a detailed explanation of the pascal language. The aim is to list which Pascal
  359. constructs are supported, and to show where the Free Pascal implementation di ers
  360. from the Turbo Pascal implementation.
  361.  
  362.  
  363. Notations
  364. Throughout this document, we will refer to functions, types and variables with
  365. typewriter font. Functions and procedures have their own subsections, and for
  366. each function or procedure we have the following topics:
  367.  
  368. Declaration The exact declaration of the function.
  369.  
  370. Description What does the procedure exactly do ?
  371.  
  372. Errors What errors can occur.
  373.  
  374. See Also Cross references to other related functions/commands.
  375.  
  376. The cross-references come in two flavours:
  377.  
  378.      * References to other functions in this manual. In the printed copy, a number
  379.        will appear after this reference. It refers to the page where this function is
  380.        explained. In the on-line help pages, this is a hyperlink, on which you can
  381.        click to jump to the declaration.
  382.  
  383.      * References to Unix manual pages. (For linux related things only) they are
  384.        printed in typewriter font, and the number after it is the Unix manual
  385.        section.
  386.  
  387.  
  388. Syntax diagrams
  389. All elements of the pascal language are explained in syntax diagrams. Syntax
  390. diagrams are like flow charts. Reading a syntax diagram means that you must get
  391. from the left side to the right side, following the arrows. When you are at the right
  392. of a syntax diagram, and it ends with a single arrow, this means the syntax diagram
  393. is continued on the next line. If the line ends on 2 arrows pointing to each other,
  394. then the diagram is ended.
  395. Syntactical elements are written like this
  396. -
  397. - syntactical elements are like this                                             - 
  398.  
  399. Keywords you must type exactly as in the diagram:
  400. -
  401. - keywords are like this                                                         - 
  402.  
  403. When you can repeat something there is an arrow around it:
  404. -
  405. -      this can be repeated                                                      - 
  406.       6
  407.  
  408. When there are di erent possibilities, they are listed in columns:
  409.  
  410.  
  411.                                             8
  412.  
  413.  
  414.  
  415.                                                               LIST OF TABLES
  416.  
  417.  
  418. -
  419. -      First possibility                                                      - 
  420.      Second possibility
  421.  
  422. Note, that one of the possibilities can be empty:
  423. -
  424. -                                                                             - 
  425.        First possibility
  426.      Second possibility
  427.  
  428. This means that both the first or second possibility are optional. Of course, all
  429. these elements can be combined and nested.
  430.  
  431.  
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467.  
  468.  
  469.  
  470.  
  471.  
  472.                                          9
  473.  
  474.  
  475.  
  476.        Part I
  477.  
  478. The Pascal language
  479.  
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487.  
  488.  
  489.  
  490.  
  491.          10
  492.  
  493.  
  494.  
  495. Chapter 1
  496.  
  497. Pascal Tokens
  498.  
  499. In this chapter we describe all the pascal reserved words, as well as the various ways
  500. to denote strings, numbers, identifiers etc.
  501.  
  502.  
  503. 1.1 Symbols
  504.  
  505. Free Pascal allows all characters, digits and some special ASCII symbols in a Pascal
  506. source file.
  507.  
  508.       Recognised symbols
  509.  
  510.     -
  511.      - letter       A...Z                                                   - 
  512.                     a...z
  513.     -
  514.      - digit 0...9                                                          - 
  515.     -
  516.      - hex digit       0...9                                                - 
  517.                        A...F
  518.                        a...f
  519.  
  520.  
  521.  
  522. The following characters have a special meaning:
  523.  
  524.  + - * / = < > [ ] . , ( ) : ^ @ { } $ #
  525.  
  526. and the following character pairs too:
  527.  
  528. <= >= := += -= *= /= (* *) (. .) //
  529.  
  530. When used in a range specifier, the character pair (. is equivalent to the left square
  531. bracket [. Likewise, the character pair .) is equivalent to the right square bracket
  532. ]. When used for comment delimiters, the character pair (* is equivalent to the left
  533. brace { and the character pair *) is equivalent to the right brace }. These character
  534. pairs retain their normal meaning in string expressions.
  535.  
  536.  
  537.  
  538.  
  539.                                           11
  540.  
  541.  
  542.  
  543.                                                                1.2. COMMENTS
  544.  
  545.  
  546. 1.2 Comments
  547.  
  548. Free Pascal supports the use of nested comments. The following constructs are valid
  549. comments:
  550.  
  551. (* This is an old style comment *)
  552. { This is a Turbo Pascal comment }
  553. // This is a Delphi comment. All is ignored till the end of the line.
  554.  
  555. The following are valid ways of nesting comments:
  556.  
  557. { Comment 1 (* comment 2 *) }
  558. (* Comment 1 { comment 2 } *)
  559. { comment 1 // Comment 2 }
  560. (* comment 1 // Comment 2 *)
  561. // comment 1 (* comment 2 *)
  562. // comment 1 { comment 2 }
  563.  
  564. The last two comments must be on one line. The following two will give errors:
  565.  
  566.  // Valid comment { No longer valid comment !!
  567.         }
  568.  
  569. and
  570.  
  571.  // Valid comment (* No longer valid comment !!
  572.         *)
  573.  
  574. The compiler will react with a 'invalid character' error when it encounters such
  575. constructs, regardless of the -So switch.
  576.  
  577.  
  578. 1.3 Reserved words
  579.  
  580. Reserved words are part of the Pascal language, and cannot be redefined. They will
  581. be denoted as this throughout the syntax diagrams. Reserved words can be typed
  582. regardless of case, i.e. Pascal is case insensitive. We make a distinction between
  583. Turbo Pascal and Delphi reserved words, since with the -So switch, only the Turbo
  584. Pascal reserved words are recognised, and the Delphi ones can be redefined. By
  585. default, Free Pascal recognises the Delphi reserved words.
  586.  
  587.  
  588. Turbo Pascal reserved words
  589. The following keywords exist in Turbo Pascal mode
  590.  
  591. absolute             const                    else             implementation
  592. and                  constructor              end              in
  593. array                continue                 file             inherited
  594. asm                  destructor               for              inline
  595. begin                div                      function         interface
  596. break                do                       goto             label
  597. case                 downto                   if               mod
  598.  
  599.  
  600.                                              12
  601.  
  602.  
  603.  
  604.                                                                   1.4. IDENTIFIERS
  605.  
  606.  
  607. nil                    packed                       shl            until
  608. not                    procedure                    shr            uses
  609. object                 program                      string         var
  610. of                     record                       then           while
  611. on                     repeat                       to             with
  612. operator               self                         type           xor
  613. or                     set                          unit
  614.  
  615.  
  616. Delphi reserved words
  617. The Delphi (II) reserved words are the same as the pascal ones, plus the following
  618. ones:
  619.  
  620. as                     finalization                 library        try
  621. class                  finally                      on
  622. except                 initialization               property
  623. exports                is                           raise
  624.  
  625.  
  626. Free Pascal reserved words
  627. On top of the Turbo Pascal and Delphi reserved words, Free Pascal also considers
  628. the following as reserved words:
  629.  
  630. dispose                false                        true
  631. exit                   new
  632.  
  633.  
  634. Modifiers
  635. The following is a list of all modifiers. Contrary to Delphi, Free Pascal doesn't allow
  636. you to redefine these modifiers.
  637.  
  638. absolute               external                     pascal         register
  639. abstract               far                          popstack       stdcall
  640. alias                  forward                      private        virtual
  641. assembler              index                        protected      write
  642. cdecl                  name                         public
  643. default                near                         published
  644. export                 override                     read
  645.  
  646. Remark that predefined types such as Byte, Boolean and constants such as maxint
  647. are not reserved words. They are identifiers, declared in the system unit. This
  648. means that you can redefine these types. You are, however, not encouraged to do
  649. this, as it will cause a lot of confusion.
  650.  
  651.  
  652. 1.4 Identifiers
  653.  
  654. Identifiers denote constants, types, variables, procedures and functions, units, and
  655. programs. All names of things that you define are identifiers. An identifier con-
  656. sists of 255 significant characters (letters, digits and the underscore character), from
  657. which the first must be an alphanumeric character, or an underscore ( ) The fol-
  658. lowing diagram gives the basic syntax for identifiers.
  659.  
  660.  
  661.                                               13
  662.  
  663.  
  664.  
  665.                                                                                    1.5. NUMBERS
  666.  
  667.  
  668.  
  669.      Identifiers
  670.  
  671.     -
  672.      - identifier      letter                                                                - 
  673.                                           6 letter
  674.                                                 digit
  675.  
  676.  
  677.  
  678.  
  679. 1.5 Numbers
  680.  
  681. Numbers are denoted in decimal notation. Real (or decimal) numbers are writ-
  682. ten using engeneering notation (e.g. 0.314E1). Free Pascal supports hexadecimal
  683. format the same way as Turbo Pascal does. To specify a constant value in hexadec-
  684. imal format, prepend it with a dollar sign ($). Thus, the hexadecimal $FF equals
  685. 255 decimal. In addition to the support for hexadecimal notation, Free Pascal also
  686. supports binary notation. You can specify a binary number by preceding it with a
  687. percent sign (%). Thus, 255 can be specified in binary notation as %11111111. The
  688. following diagrams show the syntax for numbers.
  689.  
  690.      Numbers
  691.  
  692.     -
  693.      - hex digit sequence            hex digit                                               - 
  694.                                     6
  695.  
  696.     -
  697.      - bin digit sequence                  1                                                 - 
  698.                                    6 0
  699.  
  700.     -
  701.      - digit sequence            digit                                                       - 
  702.                            6
  703.  
  704.     -
  705.      - unsigned integer                     digit sequence                                   - 
  706.                                    $ hex digit sequence
  707.                                    % bin digit sequence
  708.  
  709.     -
  710.      - sign +                                                                                - 
  711.                -
  712.  
  713.     -
  714.      - unsigned real digit sequence                                                          - 
  715.                                                          . digit sequence    scale factor
  716.  
  717.     -
  718.      - scale factor       E                              digit sequence                      - 
  719.                           e               sign
  720.  
  721.     -
  722.      - unsigned number                    unsigned real                                      - 
  723.                                     unsigned integer
  724.  
  725.     -
  726.      - signed number                            unsigned number                              - 
  727.                                  sign
  728.  
  729.  
  730.  
  731.  
  732.  
  733.                                                           14
  734.  
  735.  
  736.  
  737.                                                                        1.6. LABELS
  738.  
  739.  
  740. 1.6 Labels
  741.  
  742. Labels can be digit sequences or identifiers.
  743.  
  744.      Label
  745.  
  746.     -
  747.      - label      digit sequence                                            - 
  748.                      identifier
  749.  
  750.  
  751.  
  752. 1.7 Character strings
  753.  
  754. A character string (or string for short) is a sequence of zero or more characters from
  755. the ASCII character set, enclosed by single quotes, and on 1 line of the program
  756. source. A character set with nothing between the quotes ('') is an empty string.
  757.  
  758.      Character strings
  759.  
  760.     -
  761.      - character string            quoted string                            - 
  762.                             6 control string
  763.  
  764.     -
  765.      - quoted string '             string character    '                    - 
  766.                                 6
  767.  
  768.     -
  769.      - string character            Any character except ' or CR             - 
  770.                                                 "
  771.  
  772.     -
  773.      - control string      # unsigned integer                               - 
  774.                            6
  775.  
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782.  
  783.  
  784.  
  785.  
  786.  
  787.  
  788.  
  789.  
  790.  
  791.  
  792.  
  793.  
  794.  
  795.  
  796.                                                15
  797.  
  798.  
  799.  
  800. Chapter 2
  801.  
  802. Constants
  803.  
  804. Just as in Turbo Pascal, Free Pascal supports both normal and typed constants.
  805.  
  806.  
  807. 2.1 Ordinary constants
  808.  
  809. Ordinary constants declarations are not di erent from the Turbo Pascal or Delphi
  810. implementation.
  811.  
  812.       Constant declaration
  813.  
  814.     -
  815.      - constant declaration      identifier = expression ;                 - 
  816.                                 6
  817.  
  818.  
  819. The compiler must be able to evaluate the expression in a constant declaration at
  820. compile time. This means that most of the functions in the Run-Time library can-
  821. not be used in a constant declaration. Operators such as +, -, *, /, not, and,
  822. or, div(), mod(), ord(), chr(), sizeof can be used, however. For more in-
  823. formation on expressions, see chapter 6, page 53. You can only declare constants of
  824. the following types: Ordinal types, Real types, Char, and String. The following
  825. are all valid constant declarations:
  826.  
  827. Const
  828.   e = 2.7182818; { Real type constant. }
  829.   a = 2;              { Ordinal (Integer) type constant. }
  830.   c = '4';            { Character type constant. }
  831.   s = 'This is a constant string'; {String type constant.}
  832.   s = chr(32)
  833.   ls = SizeOf(Longint);
  834.  
  835. Assigning a value to an ordinary constant is not permitted. Thus, given the previous
  836. declaration, the following will result in a compiler error:
  837.  
  838.   s := 'some other string';
  839.  
  840.  
  841.  
  842.  
  843.                                           16
  844.  
  845.  
  846.  
  847.                                                            2.2. TYPED CONSTANTS
  848.  
  849.  
  850. 2.2 Typed constants
  851.  
  852. Typed constants serve to provide a program with initialised variables. Contrary
  853. to ordinary constants, they may be assigned to at run-time. The di erence with
  854. normal variables is that their value is initialised when the program starts, whereas
  855. normal variables must be initialised explicitly.
  856.  
  857.         Typed constant declaration
  858.  
  859.     -
  860.         - typed constant declaration       identifier : type = typed constant ; -
  861.                                          6
  862.     -                                                                       - 
  863.  
  864.     -
  865.         - typed constant                constant                            - 
  866.                                  address constant
  867.                                   array constant
  868.                                  record constant
  869.                                procedural constant
  870.  
  871.  
  872.  
  873. Given the declaration:
  874.  
  875. Const
  876.   S : String = 'This is a typed constant string';
  877.  
  878. The following is a valid assignment:
  879.  
  880.  S := 'Result : '+Func;
  881.  
  882. Where Func is a function that returns a String. Typed constants also allow you
  883. to initialize arrays and records. For arrays, the initial elements must be specified,
  884. surrounded by round brackets, and separated by commas. The number of elements
  885. must be exactly the same as the number of elements in the declaration of the type.
  886. As an example:
  887.  
  888. Const
  889.   tt : array [1..3] of string[20] = ('ikke', 'gij', 'hij');
  890.   ti : array [1..3] of Longint = (1,2,3);
  891.  
  892. For constant records, you should specify each element of the record, in the form
  893. Field : Value, separated by commas, and surrounded by round brackets. As an
  894. example:
  895.  
  896. Type
  897.   Point = record
  898.         X,Y : Real
  899.         end;
  900. Const
  901.   Origin : Point = (X:0.0 , Y:0.0);
  902.  
  903. The order of the fields in a constant record needs to be the same as in the type
  904. declaration, otherwise you'll get a compile-time error.
  905.  
  906.  
  907.                                                     17
  908.  
  909.  
  910.  
  911. Chapter 3
  912.  
  913. Types
  914.  
  915. All variables have a type. Free Pascal supports the same basic types as Turbo
  916. Pascal, with some extra types from Delphi. You can declare your own types, which
  917. is in essence defining an identifier that can be used to denote your custom type
  918. when declaring variables further in the source code.
  919.  
  920.      Type declaration
  921.  
  922.     -
  923.      - type declaration identifier = type ;                                 - 
  924.  
  925.  
  926. There are 7 major type classes :
  927.  
  928.      Types
  929.  
  930.     -
  931.      - type         simple type                                             - 
  932.                     string type
  933.                   structured type
  934.                    pointer type
  935.                   procedural type
  936.                    type identifier
  937.  
  938.  
  939. The last class, type identifier, is just a means to give another name to a type. This
  940. gives you a way to make types platform independent, by only using your own types,
  941. and then defining these types for each platform individually. The programmer that
  942. uses your units doesn't have to worry about type size and so on. It also allows
  943. you to use shortcut names for fully qualified type names. You can e.g. define
  944. system.longint as Olongint and then redefine longint.
  945.  
  946.  
  947. 3.1 Base types
  948.  
  949. The base or simple types of Free Pascal are the Delphi types. We will discuss each
  950. separate.
  951.  
  952.  
  953.                                          18
  954.  
  955.  
  956.  
  957.                                                                   3.1. BASE TYPES
  958.  
  959.  
  960.  
  961.                            Table 3.1: Predefined ordinal types
  962.  
  963.                                            Name
  964.                                            Integer
  965.                                            Shortint
  966.                                            SmallInt
  967.                                            Longint
  968.                                            Byte
  969.                                            Word
  970.                                            Cardinal
  971.                                            Boolean
  972.                                            ByteBool
  973.                                            LongBool
  974.                                            Char
  975.  
  976.  
  977.  
  978.      Simple types
  979.  
  980.     -
  981.      - simple type         ordinal type                                      - 
  982.                             real type
  983.     -
  984.      - real type real type identifier                                        - 
  985.  
  986.  
  987.  
  988. Ordinal types
  989. With the exception of Real types, all base types are ordinal types. Ordinal types
  990. have the following characteristics:
  991.  
  992.   1. Ordinal types are countable and ordered, i.e. it is, in principle, possible to
  993.      start counting them one bye one, in a specified order. This property allows
  994.      the operation of functions as Inc (120), Ord (128), Dec (107) on ordinal types
  995.      to be defined.
  996.  
  997.   2. Ordinal values have a smallest possible value. Trying to apply the Pred (131)
  998.      function on the smallest possible value will generate a range check error if
  999.      range checking is enabled.
  1000.  
  1001.   3. Ordinal values have a largest possible value. Trying to apply the Succ (144)
  1002.      function on the largest possible value will generate a range check error if range
  1003.      checking is enabled.
  1004.  
  1005. Integers
  1006.  
  1007. A list of pre-defined ordinal types is presented in table (3.1) The integer types, and
  1008. their ranges and sizes, that are predefined in Free Pascal are listed in table (3.2).
  1009. Free Pascal does automatic type conversion in expressions where di erent kinds of
  1010. integer types are used.
  1011.  
  1012.  
  1013.  
  1014.  
  1015.                                               19
  1016.  
  1017.  
  1018.  
  1019.                                                                       3.1. BASE TYPES
  1020.  
  1021.  
  1022.  
  1023.                             Table 3.2: Predefined integer types
  1024.  
  1025.                 Type                       Range               Size in bytes
  1026.                 Byte                      0 .. 255                        1
  1027.                 Shortint                 -127 .. 127                      1
  1028.                 Integer                -32768 .. 32767                   21
  1029.                 Word                     0 .. 65535                       2
  1030.                 Longint       -2147483648 .. 2147483648                   4
  1031.                 Cardinal               0..4294967296                      4
  1032.  
  1033.  
  1034.                                    Table 3.3: Boolean types
  1035.  
  1036.                            Name           Size Ord(True)
  1037.                            Boolean        1      1
  1038.                            ByteBool       1      Any nonzero value
  1039.                            WordBool 2            Any nonzero value
  1040.                            LongBool       4      Any nonzero value
  1041.  
  1042.  
  1043. Boolean types
  1044.  
  1045. Free Pascal supports the Boolean type, with its two pre-defined possible values
  1046. True and False. It also supports the ByteBool, WordBool and LongBool types.
  1047. These are the only two values that can be assigned to a Boolean type. Of course,
  1048. any expression that resolves to a boolean value, can also be assigned to a boolean
  1049. type. Assuming B to be of type Boolean, the following are valid assignments:
  1050.  
  1051.  B := True;
  1052.  B := False;
  1053.  B := 1<>2; { Results in B := True }
  1054.  
  1055. Boolean expressions are also used in conditions.
  1056. Remark: In Free Pascal, boolean expressions are always evaluated in such a way
  1057. that when the result is known, the rest of the expression will no longer be evaluated
  1058. (Called short-cut evaluation). In the following example, the function Func will never
  1059. be called, which may have strange side-e ects.
  1060.  
  1061.  ...
  1062.  B := False;
  1063.  A := B and Func;
  1064.  
  1065. Here Func is a function which returns a Boolean type.
  1066. Remark: The WordBool, LongBool and ByteBool types were not supported by Free
  1067. Pascal until version 0.99.6.
  1068.  
  1069. Enumeration types
  1070.  
  1071. Enumeration types are supported in Free Pascal. On top of the Turbo Pascal
  1072. implementation, Free Pascal allows also a C-style extension of the enumeration
  1073. type, where a value is assigned to a particular element of the enumeration list.
  1074.  
  1075.  
  1076.                                                20
  1077.  
  1078.  
  1079.  
  1080.                                                                       3.1. BASE TYPES
  1081.  
  1082.  
  1083.  
  1084.         Enumerated types
  1085.  
  1086.     -
  1087.         - enumerated type (                identifier list      )             - 
  1088.                                     6 assigned enum list
  1089.                                                   ,
  1090.  
  1091.     -
  1092.         - identifier list    identifier                                       - 
  1093.                              6 ,
  1094.     -
  1095.         - assigned enum list        identifier := expression                  - 
  1096.                                   6               ,
  1097.  
  1098.  
  1099.  
  1100. (see chapter 6, page 53 for how to use expressions) When using assigned enumerated
  1101. types, the assigned elements must be in ascending numerical order in the list, or
  1102. the compiler will complain. The expressions used in assigned enumerated elements
  1103. must be known at compile time. So the following is a correct enumerated type
  1104. declaration:
  1105.  
  1106. Type
  1107.   Direction = ( North, East, South, West );
  1108.  
  1109. The C style enumeration type looks as follows:
  1110.  
  1111. Type
  1112.   EnumType = (one, two, three, forty := 40,fortyone);
  1113.  
  1114. As a result, the ordinal number of forty is 40, and not 3, as it would be when
  1115. the ':= 40' wasn't present. The ordinal value of fortyone is then 41, and not
  1116. 4, as it would be when the assignment wasn't present. After an assignment in an
  1117. enumerated definition the compiler adds 1 to the assigned value to assign to the
  1118. next enumerated value. When specifying such an enumeration type, it is important
  1119. to keep in mind that you should keep the enumerated elements in ascending order.
  1120. The following will produce a compiler error:
  1121.  
  1122. Type
  1123.   EnumType = (one, two, three, forty := 40, thirty := 30);
  1124.  
  1125. It is necessary to keep forty and thirty in the correct order. When using enumer-
  1126. ation types it is important to keep the following points in mind:
  1127.  
  1128.   1. You cannot use the Pred and Succ functions on this kind of enumeration
  1129.         types. If you try to do that, you'll get a compiler error.
  1130.  
  1131.   2. Enumeration types are by default stored in 4 bytes. You can change this
  1132.         behaviour with the {$PACKENUM n} compiler directive, which tells the compiler
  1133.         the minimal number of bytes to be used for enumeration types. For instance
  1134.  
  1135.         Type
  1136.            LargeEnum = ( BigOne, BigTwo, BigThree );
  1137.         {$PACKENUM 1}
  1138.            SmallEnum = ( one, two, three );
  1139.         Var S : SmallEnum;
  1140.  
  1141.  
  1142.                                                21
  1143.  
  1144.  
  1145.  
  1146.                                                                   3.1. BASE TYPES
  1147.  
  1148.  
  1149.                 L : LargeEnum;
  1150.         begin
  1151.             WriteLn ('Small enum : ',SizeOf(S));
  1152.             WriteLn ('Large enum : ',SizeOf(L));
  1153.         end.
  1154.  
  1155.         will, when run, print the following:
  1156.  
  1157.         Small enum : 1
  1158.         Large enum : 4
  1159.  
  1160. More information can be found in the Programmers' guide, in the compiler directives
  1161. section.
  1162.  
  1163. Subrange types
  1164.  
  1165. A subrange type is a range of values from an ordinal type (the host type). To define
  1166. a subrange type, one must specify it's limiting values: the highest and lowest value
  1167. of the type.
  1168.  
  1169.         Subrange types
  1170.  
  1171.     -
  1172.         - subrange type constant .. constant                                  - 
  1173.  
  1174.  
  1175. Some of the predefined integer types are defined as subrange types:
  1176.  
  1177. Type
  1178.   Longint = $80000000..$7fffffff;
  1179.   Integer = -32768..32767;
  1180.   shortint = -128..127;
  1181.   byte            = 0..255;
  1182.   Word            = 0..65535;
  1183.  
  1184. But you can also define subrange types of enumeration types:
  1185.  
  1186. Type
  1187.   Days = (monday,tuesday,wednesday,thursday,friday,
  1188.                  saturday,sunday);
  1189.   WorkDays = monday .. friday;
  1190.   WeekEnd = Saturday .. Sunday;
  1191.  
  1192.  
  1193. Real types
  1194. Free Pascal uses the math coprocessor (or an emulation) for all its floating-point
  1195. calculations. The Real native type is processor dependant, but it is either Single
  1196. or Double. Only the IEEE floating point types are supported, and these depend
  1197. on the target processor and emulation options. The true Turbo Pascal compatible
  1198. types are listed in table (3.4).      Until version 0.9.1 of the compiler, all the Real
  1199. types were mapped to type Double, meaning that they all have size 8. The SizeOf
  1200. (142) function is your friend here. The Real type of turbo pascal is automatically
  1201. mapped to Double. The Comp type is, in e ect, a 64-bit integer.
  1202.  
  1203.                                             22
  1204.  
  1205.  
  1206.  
  1207.                                                            3.2. CHARACTER TYPES
  1208.  
  1209.  
  1210.  
  1211.                             Table 3.4: Supported Real types
  1212.  
  1213.            Type                   Range            Significant digits Size2
  1214.            Single            1.5E-45 .. 3.4E38              7-8          4
  1215.            Real             5.0E-324 .. 1.7E308            15-16         8
  1216.            Double           5.0E-324 .. 1.7E308            15-16         8
  1217.            Extended 1.9E-4951 .. 1.1E4932                  19-20        10
  1218.            Comp             -2E64+1 .. 2E63-1              19-20         8
  1219.  
  1220.  
  1221. 3.2 Character types
  1222.  
  1223. Char
  1224. Free Pascal supports the type Char. A Char is exactly 1 byte in size, and contains
  1225. one character. You can specify a character constant by enclosing the character
  1226. in single quotes, as follows : 'a' or 'A' are both character constants. You can
  1227. also specify a character by their ASCII value, by preceding the ASCII value with
  1228. the number symbol (#). For example specifying #65 would be the same as 'A'.
  1229. Also, the caret character (^) can be used in combination with a letter to specify a
  1230. character with ASCII value less than 27. Thus ^G equals #7 (G is the seventh letter
  1231. in the alphabet.) If you want to represent the single quote character, type it two
  1232. times successively, thus '''' represents the single quote character.
  1233.  
  1234.  
  1235. Strings
  1236. Free Pascal supports the String type as it is defined in Turbo Pascal and it supports
  1237. ansistrings as in Delphi. To declare a variable as a string, use the following type
  1238. specification:
  1239.  
  1240.       ShortString
  1241.  
  1242.     -
  1243.      - string type string                                                      - 
  1244.                                    [ unsigned integer ]
  1245.  
  1246.  
  1247. The meaning of a string declaration statement is interpreted di erently depending
  1248. on the {$H} switch. The above declaration can declare an ansistrng or a short
  1249. string.
  1250. Whatever the actual type, ansistrings and short strings can be used interchangeably.
  1251. The compiler always takes care of the necessary type coversions. Note, however,
  1252. that the result of an expression that contains ansistrings and short strings will
  1253. always be an ansistring.
  1254.  
  1255.  
  1256. Short strings
  1257. A string declaration declares a short string in the following cases:
  1258.  
  1259.    1. If the switch is o : {$H-}, the string declaration will always be a short string
  1260.       declaration.
  1261.  
  1262.  
  1263.                                            23
  1264.  
  1265.  
  1266.  
  1267.                                                          3.2. CHARACTER TYPES
  1268.  
  1269.  
  1270.  
  1271.                       Table 3.5: AnsiString memory structure
  1272.  
  1273.                     O set Contains
  1274.                         -12 Longint with maximum string size.
  1275.                           -8 Longint with actual string size.
  1276.                           -4 Longint with reference count.
  1277.                           0 Actual string, null-terminated.
  1278.  
  1279.  
  1280.    2. If the switch is on {$H+}, and there is a length specifier, the declaration is a
  1281.       short string declaration.
  1282.  
  1283. The predefined type ShortString is defined as a string of length 255:
  1284.  
  1285.  ShortString = String[255];
  1286.  
  1287. For short strings Free Pascal reserves Size+1 bytes for the string S, and in the
  1288. zeroeth element of the string (S[0]) it will store the length of the variable. If you
  1289. don't specify the size of the string, 255 is taken as a default. For example in
  1290.  
  1291. {$H-}
  1292.  
  1293. TypeNameString = String[10];
  1294.    StreetString = String;
  1295.  
  1296. NameString can contain maximum 10 characters. While StreetString can contain
  1297. 255 characters. The sizes of these variables are, respectively, 11 and 256 bytes.
  1298.  
  1299.  
  1300. Ansistrings
  1301. If the {$H} switch is on, then a string definition that doesn't contain a length
  1302. specifier, will be regarded as an ansistring.
  1303. Ansistrings are strings that have no length limit. They are reference counted.
  1304. Internally, an ansistring is treated as a pointer.
  1305. If the string is empty (''), then the pointer is nil. If the string is not empty, then
  1306. the pointer points to a structure in heap memory that looks as in table (3.5).
  1307. Because of this structure, it is possible to typecast an ansistring to a pchar. If
  1308. the string is empty (so the pointer is nil) then the compiler makes sure that the
  1309. typecasted pchar will point to a null byte.
  1310. AnsiStrings can be unlimited in length. Since the length is stored, the length of an
  1311. ansistring is available immediatly, providing for fast access.
  1312. Assigning one ansistring to another doesn't involve moving the actual string. A
  1313. statement
  1314.  
  1315.   S2:=S1;
  1316.  
  1317. results in the reference count of S2 being decreased by one, The referece count of S1
  1318. is increased by one, and finally S1 (as a pointer) is copied to S2. This is a significant
  1319. speed-up in your code.
  1320.  
  1321.  
  1322.                                            24
  1323.  
  1324.  
  1325.  
  1326.                                                          3.2. CHARACTER TYPES
  1327.  
  1328.  
  1329. If a reference count reaches zero, then the memory occupied by the string is deal-
  1330. located automatically, so no memory leaks arise.
  1331. When an ansistring is declared, the Free Pascal compiler initially allocates just
  1332. memory for a pointer, not more. This pinter is guaranteed to be nil, meaning that
  1333. the string is initially empty. This is true for local, global or part of a structure
  1334. (arrays, records or objects).
  1335. This does introduce an overhead. For instance, declaring
  1336.  
  1337. VarA : Array[1..100000] of string;
  1338. Will copy 1000000 times nil into A. When A goes out of scope, then the 100000
  1339. strings will be dereferenced one by one. All this happens invisibly for the program-
  1340. mer, but when considering performance issues, this is important.
  1341. Memory will be allocated only when the string is assigned a value. If the string
  1342. goes out of scope, then it is automatically dereferenced.
  1343. If you assign a value to a character of a string that has a reference count greater
  1344. than 1, such as in the following statements:
  1345.  
  1346.   S:=T; { reference count for S and T is now 2 }
  1347.   S[I]:='@';
  1348.  
  1349. then a copy of the string is created before the assignment. This is known as copy-
  1350. on-write semantics.
  1351. It is impossible to access the length of an ansistring by referring to the zeroeth char-
  1352. acter. The following statement will generate a compiler error if S is an ansistring:
  1353.  
  1354.   Len:=S[0];
  1355.  
  1356. Instead, you must use the Length (122) function to get the length of a string.
  1357. To set the length of an ansistring, you can use the SetLength (140) function. Con-
  1358. stant ansistrings have a reference count of -1 and are treated specially.
  1359. Ansistrings are converted to short strings by the compiler if needed, this means that
  1360. you can mix the use of ansistrings and short strings without problems.
  1361. You can typecast ansistrings to PChar or Pointer types:
  1362.  
  1363. Var P : Pointer;
  1364.      PC : PChar;
  1365.      S : AnsiString;
  1366.  
  1367. begin
  1368.   S :='This is an ansistring';
  1369.   PC:=Pchar(S);
  1370.   P :=Pointer(S);
  1371.  
  1372. There is a di erence between the two typecasts. If you typecast an empty ansistring
  1373. to a pointer, the pointer wil be Nil. If you typecast an empty ansistring to a PChar,
  1374. then the result will be a pointer to a zero byte (an empty string).
  1375. The result of such a typecast must be used with care. In general, it is best to
  1376. consider the result of such a typecast as read-only, i.e. suitable for passing to a
  1377. procedure that needs a constant pchar argument.
  1378. It is therefore NOT advisable to typecast one of the following:
  1379.  
  1380.                                           25
  1381.  
  1382.  
  1383.  
  1384.                                                         3.2. CHARACTER TYPES
  1385.  
  1386.  
  1387.   1. expressions.
  1388.  
  1389.   2. strings that have reference count larger than 0. (call uniquestring if you want
  1390.         to ensure a string has reference count 1)
  1391.  
  1392.  
  1393. Constant strings
  1394. To specify a constant string, you enclose the string in single-quotes, just as a Char
  1395. type, only now you can have more than one character. Given that S is of type
  1396. String, the following are valid assignments:
  1397.  
  1398. S := 'This is a string.';
  1399. S := 'One'+', Two'+', Three';
  1400. S := 'This isn''t difficult !';
  1401. S := 'This is a weird character : '#145' !';
  1402.  
  1403. As you can see, the single quote character is represented by 2 single-quote characters
  1404. next to each other. Strange characters can be specified by their ASCII value. The
  1405. example shows also that you can add two strings. The resulting string is just the
  1406. concatenation of the first with the second string, without spaces in between them.
  1407. Strings can not be substracted, however.
  1408. Whether the constant string is stored as an ansistring or a short string depends on
  1409. the settings of the {$H} switch.
  1410.  
  1411.  
  1412. PChar
  1413. Free Pascal supports the Delphi implementation of the PChar type. PChar is defined
  1414. as a pointer to a Char type, but allows additional operations. The PChar type can
  1415. be understood best as the Pascal equivalent of a C-style null-terminated string, i.e.
  1416. a variable of type PChar is a pointer that points to an array of type Char, which
  1417. is ended by a null-character (#0). Free Pascal supports initializing of PChar typed
  1418. constants, or a direct assignment. For example, the following pieces of code are
  1419. equivalent:
  1420.  
  1421. program one;
  1422. var p : PChar;
  1423. begin
  1424.   P := 'This is a null-terminated string.';
  1425.   WriteLn (P);
  1426. end.
  1427.  
  1428. Results in the same as
  1429.  
  1430. program two;
  1431. const P : PChar = 'This is a null-terminated string.'
  1432. begin
  1433.   WriteLn (P);
  1434. end.
  1435.  
  1436. These examples also show that it is possible to write the contents of the string
  1437. to a file of type Text. The strings unit contains procedures and functions that
  1438. manipulate the PChar type as you can do it in C. Since it is equivalent to a pointer
  1439. to a type Char variable, it is also possible to do the following:
  1440.  
  1441.                                            26
  1442.  
  1443.  
  1444.  
  1445.                                                         3.3. STRUCTURED TYPES
  1446.  
  1447.  
  1448.  
  1449.                           Table 3.6: PChar pointer arithmetic
  1450.  
  1451.          Operation                                                      Result
  1452.          P + I                           Adds I to the address pointed to by P.
  1453.          I + P                           Adds I to the address pointed to by P.
  1454.          P - I                  Substracts I from the address pointed to by P.
  1455.          P - Q         Returns, as an integer, the distance between 2 addresses
  1456.                                 (or the number of characters between P and Q)
  1457.  
  1458.  
  1459. Program three;
  1460. Var S : String[30];
  1461.         P : PChar;
  1462. begin
  1463.   S := 'This is a null-terminated string.'#0;
  1464.   P := @S[1];
  1465.   WriteLn (P);
  1466. end.
  1467.  
  1468. This will have the same result as the previous two examples. You cannot add
  1469. null-terminated strings as you can do with normal Pascal strings. If you want to
  1470. concatenate two PChar strings, you will need to use the unit strings. However, it is
  1471. possible to do some pointer arithmetic. You can use the operators + and - to do
  1472. operations on PChar pointers. In table (3.6), P and Q are of type PChar, and I is of
  1473. type Longint.
  1474.  
  1475.  
  1476. 3.3 Structured Types
  1477.  
  1478. A structured type is a type that can hold multiple values in one variable. Stuctured
  1479. types can be nested to unlimited levels.
  1480.  
  1481.         Structured Types
  1482.  
  1483.     -
  1484.         - structured type          array type                                - 
  1485.                                   record type
  1486.                                    class type
  1487.                               class reference type
  1488.                                     set type
  1489.                                    file type
  1490.  
  1491.  
  1492. Unlike Delphi, Free Pascal does not support the keyword Packed for all structured
  1493. types, as can be seen in the syntax diagram. It will be mentioned when a type
  1494. supports the packed keyword. In the following, each of the possible structured
  1495. types is discussed.
  1496.  
  1497.  
  1498. Arrays
  1499. Free Pascal supports arrays as in Turbo Pascal, multi-dimensional arrays and packed
  1500. arrays are also supported:
  1501.  
  1502.                                                 27
  1503.  
  1504.  
  1505.  
  1506.                                                                               3.3. STRUCTURED TYPES
  1507.  
  1508.  
  1509.  
  1510.         Array types
  1511.  
  1512.     -
  1513.         - array type                        array [              ordinal type              ] of    type - 
  1514.                               packed                           6        ,
  1515.  
  1516.  
  1517. The following is a valid array declaration:
  1518.  
  1519. Type
  1520.   RealArray = Array [1..100] of Real;
  1521.  
  1522. As in Turbo Pascal, if the array component type is in itself an array, it is possible to
  1523. combine the two arrays into one multi-dimensional array. The following declaration:
  1524.  
  1525. TypeAPoints = array[1..100] of Array[1..3] of Real;
  1526. is equivalent to the following declaration:
  1527.  
  1528. TypeAPoints = array[1..100,1..3] of Real;
  1529. The functions High (119) and Low (124) return the high and low bounds of the
  1530. leftmost index type of the array. In the above case, this would be 100 and 1.
  1531.  
  1532.  
  1533. Record types
  1534. Free Pascal supports fixed records and records with variant parts. The syntax
  1535. diagram for a record type is
  1536.  
  1537.         Record types
  1538.  
  1539.     -
  1540.         - record type                            record                             end                - 
  1541.                                packed                           field list
  1542.  
  1543.     -
  1544.         - field list                     fixed fields                                                  - 
  1545.                                                         variant part           ;
  1546.                               fixed fields ;
  1547.  
  1548.     -
  1549.         - fixed fields        identifier list : type                                                   - 
  1550.                               6             ;
  1551.  
  1552.     -
  1553.         - variant part case                                       ordinal type identifier of -
  1554.                                          identifier :
  1555.     -         variant                                                                                  - 
  1556.             6 ;
  1557.     -
  1558.         - variant         constant ,             : (                           )                       - 
  1559.                          6                                     field list
  1560.  
  1561.  
  1562.  
  1563. So the following are valid record types declarations:
  1564.  
  1565.                                                          28
  1566.  
  1567.  
  1568.  
  1569.                                                          3.3. STRUCTURED TYPES
  1570.  
  1571.  
  1572. Type
  1573.   Point = Record
  1574.              X,Y,Z : Real;
  1575.              end;
  1576.   RPoint = Record
  1577.              Case Boolean of
  1578.              False : (X,Y,Z : Real);
  1579.              True : (R,theta,phi : Real);
  1580.              end;
  1581.   BetterRPoint = Record
  1582.              Case UsePolar : Boolean of
  1583.              False : (X,Y,Z : Real);
  1584.              True : (R,theta,phi : Real);
  1585.              end;
  1586.  
  1587. The variant part must be last in the record. The optional identifier in the case
  1588. statement serves to access the tag field value, which otherwise would be invisible
  1589. to the programmer. It can be used to see which variant is active at a certain time.
  1590. In e ect, it introduces a new field in the record. Remark that it is possible to nest
  1591. variant parts, as in:
  1592.  
  1593. Type
  1594.   MyRec = Record
  1595.              X : Longint;
  1596.              Case byte of
  1597.                2 : (Y : Longint;
  1598.                          case byte of
  1599.                          3 : (Z : Longint);
  1600.                          );
  1601.              end;
  1602.  
  1603. The size of a record is the sum of the sizes of its fields, each size of a field is rounded
  1604. up to two. If the record contains a variant part, the size of the variant part is
  1605. the size of the biggest variant, plus the size of the tag field type if an identifier
  1606. was declared for it. Here also, the size of each part is first rounded up to two.
  1607. So in the above example, SizeOf (142) would return 24 for Point, 24 for RPoint
  1608. and 26 for BetterRPoint. For MyRec, the value would be 12. If you want to read
  1609. a typed file with records, produced by a Turbo Pascal program, then chances are
  1610. that you will not succeed in reading that file correctly. The reason for this is that
  1611. by default, elements of a record are aligned at 2-byte boundaries, for performance
  1612. reasons. This default behaviour can be changed with the {$PackRecords n} switch.
  1613. Possible values for n are 1, 2, 4, 16 or Default. This switch tells the compiler to
  1614. align elements of a record or object or class that have size larger than n on n byte
  1615. boundaries. Elements that have size smaller or equal than n are aligned on natural
  1616. boundaries, i.e. to the first power of two that is larger than or equal to the size of
  1617. the record element. The keyword Default selects the default value for the platform
  1618. you're working on (currently, this is 2 on all platforms) Take a look at the following
  1619. program:
  1620.  
  1621. Program PackRecordsDemo;
  1622. type{$PackRecords 2}
  1623.         Trec1 = Record
  1624.           A : byte;
  1625.  
  1626.                                             29
  1627.  
  1628.  
  1629.  
  1630.                                              3.3. STRUCTURED TYPES
  1631.  
  1632.  
  1633.            B : Word;
  1634.          end;
  1635.  
  1636.          {$PackRecords 1}
  1637.          Trec2 = Record
  1638.            A : Byte;
  1639.            B : Word;
  1640.            end;
  1641.    {$PackRecords 2}
  1642.          Trec3 = Record
  1643.            A,B : byte;
  1644.          end;
  1645.  
  1646.     {$PackRecords 1}
  1647.          Trec4 = Record
  1648.            A,B : Byte;
  1649.            end;
  1650.    {$PackRecords 4}
  1651.          Trec5 = Record
  1652.            A : Byte;
  1653.            B : Array[1..3] of byte;
  1654.            C : byte;
  1655.          end;
  1656.  
  1657.          {$PackRecords 8}
  1658.          Trec6 = Record
  1659.            A : Byte;
  1660.            B : Array[1..3] of byte;
  1661.            C : byte;
  1662.            end;
  1663.    {$PackRecords 4}
  1664.          Trec7 = Record
  1665.            A : Byte;
  1666.            B : Array[1..7] of byte;
  1667.            C : byte;
  1668.          end;
  1669.  
  1670.          {$PackRecords 8}
  1671.          Trec8 = Record
  1672.            A : Byte;
  1673.            B : Array[1..7] of byte;
  1674.            C : byte;
  1675.            end;
  1676. Var rec1 : Trec1;
  1677.     rec2 : Trec2;
  1678.     rec3 : TRec3;
  1679.     rec4 : TRec4;
  1680.     rec5 : Trec5;
  1681.     rec6 : TRec6;
  1682.     rec7 : TRec7;
  1683.     rec8 : TRec8;
  1684.  
  1685. begin
  1686.   Write ('Size Trec1 : ',SizeOf(Trec1));
  1687.  
  1688.                                        30
  1689.  
  1690.  
  1691.  
  1692.                                                        3.3. STRUCTURED TYPES
  1693.  
  1694.  
  1695.   Writeln (' Offset B : ',Longint(@rec1.B)-Longint(@rec1));
  1696.   Write ('Size Trec2 : ',SizeOf(Trec2));
  1697.   Writeln (' Offset B : ',Longint(@rec2.B)-Longint(@rec2));
  1698.   Write ('Size Trec3 : ',SizeOf(Trec3));
  1699.   Writeln (' Offset B : ',Longint(@rec3.B)-Longint(@rec3));
  1700.   Write ('Size Trec4 : ',SizeOf(Trec4));
  1701.   Writeln (' Offset B : ',Longint(@rec4.B)-Longint(@rec4));
  1702.   Write ('Size Trec5 : ',SizeOf(Trec5));
  1703.   Writeln (' Offset B : ',Longint(@rec5.B)-Longint(@rec5),
  1704.                   ' Offset C : ',Longint(@rec5.C)-Longint(@rec5));
  1705.   Write ('Size Trec6 : ',SizeOf(Trec6));
  1706.   Writeln (' Offset B : ',Longint(@rec6.B)-Longint(@rec6),
  1707.                   ' Offset C : ',Longint(@rec6.C)-Longint(@rec6));
  1708.   Write ('Size Trec7 : ',SizeOf(Trec7));
  1709.   Writeln (' Offset B : ',Longint(@rec7.B)-Longint(@rec7),
  1710.                   ' Offset C : ',Longint(@rec7.C)-Longint(@rec7));
  1711.   Write ('Size Trec8 : ',SizeOf(Trec8));
  1712.   Writeln (' Offset B : ',Longint(@rec8.B)-Longint(@rec8),
  1713.                   ' Offset C : ',Longint(@rec8.C)-Longint(@rec8));
  1714. end.
  1715.  
  1716. The output of this program will be :
  1717.  
  1718. Size Trec1 : 4 Offset B : 2
  1719. Size Trec2 : 3 Offset B : 1
  1720. Size Trec3 : 2 Offset B : 1
  1721. Size Trec4 : 2 Offset B : 1
  1722. Size Trec5 : 8 Offset B : 4 Offset C : 7
  1723. Size Trec6 : 8 Offset B : 4 Offset C : 7
  1724. Size Trec7 : 12 Offset B : 4 Offset C : 11
  1725. Size Trec8 : 16 Offset B : 8 Offset C : 15
  1726.  
  1727. And this is as expected. In Trec1, since B has size 2, it is aligned on a 2 byte
  1728. boundary, thus leaving an empty byte between A and B, and making the total size
  1729. 4. In Trec2, B is aligned on a 1-byte boundary, right after A, hence, the total size of
  1730. the record is 3. For Trec3, the sizes of A,B are 1, and hence they are aligned on 1
  1731. byte boundaries. The same is true for Trec4. For Trec5, since the size of B ¡ 3 ¡ is
  1732. smaller than 4, B will be on a 4-byte boundary, as this is the first power of two that
  1733. is larger than it's size. The same holds for Trec6. For Trec7, B is aligned on a 4
  1734. byte boundary, since it's size ¡ 7 ¡ is larger than 4. However, in Trec8, it is aligned
  1735. on a 8-byte boundary, since 8 is the first power of two that is greater than 7, thus
  1736. making the total size of the record 16. As from version 0.9.3, Free Pascal supports
  1737. also the 'packed record', this is a record where all the elements are byte-aligned.
  1738. Thus the two following declarations are equivalent:
  1739.  
  1740.         {$PackRecords 1}
  1741.         Trec2 = Record
  1742.           A : Byte;
  1743.           B : Word;
  1744.           end;
  1745.         {$PackRecords 2}
  1746.  
  1747. and
  1748.  
  1749.         Trec2 = Packed Record
  1750.  
  1751.                                           31
  1752.  
  1753.  
  1754.  
  1755.                                                          3.3. STRUCTURED TYPES
  1756.  
  1757.  
  1758.  
  1759.                        Table 3.7: Set Manipulation operators
  1760.  
  1761.                              Operation             Operator
  1762.                              Union                       +
  1763.                              Di erence                    -
  1764.                              Intersection                *
  1765.                              Add element           include
  1766.                              Delete element        exclude
  1767.  
  1768.  
  1769.          A : Byte;
  1770.          B : Word;
  1771.          end;
  1772.  
  1773. Note the {$PackRecords 2} after the first declaration !
  1774.  
  1775.  
  1776. Set types
  1777. Free Pascal supports the set types as in Turbo Pascal. The prototype of a set
  1778. declaration is:
  1779.  
  1780.       Set Types
  1781.  
  1782.     -
  1783.      - set type set of ordinal type                                         - 
  1784.  
  1785.  
  1786. Each of the elements of SetType must be of type TargetType. TargetType can be
  1787. any ordinal type with a range between 0 and 255. A set can contain maximally 255
  1788. elements. The following are valid set declaration:
  1789.  
  1790. TypeJunk = Set of Char;
  1791.      Days = (Mon, Tue, Wed, Thu, Fri, Sat, Sun);
  1792.      WorkDays : Set of days;
  1793.  
  1794. Given this set declarations, the following assignment is legal:
  1795.  
  1796. WorkDays := [ Mon, Tue, Wed, Thu, Fri];
  1797.  
  1798. The operators and functions for manipulations of sets are listed in table (3.7). You
  1799. can compare two sets with the <> and = operators, but not (yet) with the < and >
  1800. operators. As of compiler version 0.9.5, the compiler stores small sets (less than 32
  1801. elements) in a Longint, if the type range allows it. This allows for faster processing
  1802. and decreases program size. Otherwise, sets are stored in 32 bytes.
  1803.  
  1804.  
  1805. File types
  1806. File types are types that store a sequence of some base type, which can be any
  1807. type except another file type. It can contain (in principle) an infinite number of
  1808.  
  1809.  
  1810.                                              32
  1811.  
  1812.  
  1813.  
  1814.                                                                    3.4. POINTERS
  1815.  
  1816.  
  1817. elements. File types are used commonly to store data on disk. Nothing stops you,
  1818. however, from writing a file driver that stores it's data in memory. Here is the type
  1819. declaration for a file type:
  1820.  
  1821.          File types
  1822.  
  1823.     -
  1824.          - file type file                                                   - 
  1825.                                 of    type
  1826.  
  1827.  
  1828. If no type identifier is given, then the file is an untyped file; it can be considered
  1829. as equivalent to a file of bytes. Untyped files require special commands to act on
  1830. them (see Blockread (102), Blockwrite (103)). The following declaration declares a
  1831. file of records:
  1832.  
  1833. TypePoint = Record
  1834.           X,Y,Z : real;
  1835.           end;
  1836.     PointFile = File of Point;
  1837.  
  1838. Internally, files are represented by the FileRec record, which is declared in the DOS
  1839. unit.
  1840. A special file type is the Text file type, represented by the TextRec record. A file
  1841. of type Text uses special input-output routines.
  1842.  
  1843.  
  1844. 3.4 Pointers
  1845.  
  1846. Free Pascal supports the use of pointers. A variable of the pointer type contains an
  1847. address in memory, where the data of another variable may be stored.
  1848.  
  1849.          Pointer types
  1850.  
  1851.     -
  1852.          - pointer type   type identifier                                   - 
  1853.  
  1854.  
  1855. As can be seen from this diagram, pointers are typed, which means that they point
  1856. to a particular kind of data. The type of this data must be known at compile time.
  1857. Dereferencing the pointer (denoted by adding ^ after the variable name) behaves
  1858. then like a variable. This variable has the type declared in the pointer declaration,
  1859. and the variable is stored in the address that is pointed to by the pointer variable.
  1860. Consider the following example:
  1861.  
  1862. Program pointers;
  1863. type
  1864.   Buffer = String[255];
  1865.   BufPtr = ^Buffer;
  1866. Var B : Buffer;
  1867.          BP : BufPtr;
  1868.          PP : Pointer;
  1869. etc..
  1870.  
  1871.                                               33
  1872.  
  1873.  
  1874.  
  1875.                                                                     3.4. POINTERS
  1876.  
  1877.  
  1878. In this example, BP is a pointer to a Buffer type; while B is a variable of type
  1879. Buffer. B takes 256 bytes memory, and BP only takes 4 bytes of memory (enough
  1880. to keep an adress in memory). Remark: Free Pascal treats pointers much the same
  1881. way as C does. This means that you can treat a pointer to some type as being an
  1882. array of this type. The pointer then points to the zeroeth element of this array.
  1883. Thus the following pointer declaration
  1884.  
  1885. Var p : ^Longint;
  1886.  
  1887. Can be considered equivalent to the following array declaration:
  1888.  
  1889. Var p : array[0..Infinity] of Longint;
  1890.  
  1891. The di erence is that the former declaration allocates memory for the pointer only
  1892. (not for the array), and the second declaration allocates memory for the entire
  1893. array. If you use the former, you must allocate memory yourself, using the Getmem
  1894. (117) function. The reference P^ is then the same as p[0]. The following program
  1895. illustrates this maybe more clear:
  1896.  
  1897. program PointerArray;
  1898. var i : Longint;
  1899.         p : ^Longint;
  1900.         pp : array[0..100] of Longint;
  1901. begin
  1902.   for i := 0 to 100 do pp[i] := i; { Fill array }
  1903.   p := @pp[0];                                { Let p point to pp }
  1904.   for i := 0 to 100 do
  1905.         if p[i]<>pp[i] then
  1906.           WriteLn ('Ohoh, problem !')
  1907. end.
  1908.  
  1909. Free Pascal supports pointer arithmetic as C does. This means that, if P is a typed
  1910. pointer, the instructions
  1911.  
  1912. Inc(P);
  1913. Dec(P);
  1914.  
  1915. Will increase, respectively descrease the address the pointer points to with the size
  1916. of the type P is a pointer to. For example
  1917.  
  1918. Var P : ^Longint;
  1919. ...
  1920.  Inc (p);
  1921.  
  1922. will increase P with 4. You can also use normal arithmetic operators on pointers,
  1923. that is, the following are valid pointer arithmetic operations:
  1924.  
  1925. var p1,p2 : ^Longint;
  1926.          L : Longint;
  1927. begin
  1928.   P1 := @P2;
  1929.   P2 := @L;
  1930.   L := P1-P2;
  1931.   P1 := P1-4;
  1932.   P2 := P2+4;
  1933. end.
  1934.  
  1935.                                           34
  1936.  
  1937.  
  1938.  
  1939.                                                                 3.5. PROCEDURAL TYPES
  1940.  
  1941.  
  1942. Here, the value that is added or substracted is not multiplied by the size of the type
  1943. the pointer points to.
  1944.  
  1945.  
  1946. 3.5 Procedural types
  1947.  
  1948. Free Pascal has support for procedural types, although it di ers a little from the
  1949. Turbo Pascal implementation of them. The type declaration remains the same, as
  1950. can be seen in the following syntax diagram:
  1951.  
  1952.         Procedural types
  1953.  
  1954.        -
  1955.         - procedural type              function header                    -
  1956.                                       procedure header    of    object
  1957.        -                                                                       - 
  1958.                  ; call modifiers
  1959.        -
  1960.         - function header function formal parameter list : result type         - 
  1961.        -
  1962.         - procedure header procedure formal parameter list                     - 
  1963.        -
  1964.         - call modifiers             register                                  - 
  1965.                                       cdecl
  1966.                                      pascal
  1967.                                      stdcall
  1968.                                 popstack
  1969.  
  1970.  
  1971. For a description of formal parameter lists, see chapter 8, page 73. The two following
  1972. examples are valid type declarations:
  1973.  
  1974. Type TOneArg = Procedure (Var X : integer);
  1975.          TNoArg = Function : Real;
  1976. var proc : TOneArg;
  1977.         func : TNoArg;
  1978.  
  1979. One can assign the following values to a procedural type variable:
  1980.  
  1981.   1. Nil, for both normal procedure pointers and method pointers.
  1982.   2. A variable reference of a procedural type, i.e. another variable of the same
  1983.         type.
  1984.   3. A global procedure or function address, with matching function or procedure
  1985.         header and calling convention.
  1986.   4. A method address.
  1987.  
  1988. Given these declarations, the following assignments are valid:
  1989.  
  1990. Procedure printit (Var X : Integer);
  1991. begin
  1992.   WriteLn (x);
  1993. end;
  1994. ...
  1995. P := @printit;
  1996. Func := @Pi;
  1997.  
  1998.                                                    35
  1999.  
  2000.  
  2001.  
  2002.                                                        3.5. PROCEDURAL TYPES
  2003.  
  2004.  
  2005. From this example, the di erence with Turbo Pascal is clear: In Turbo Pascal it isn't
  2006. necessary to use the address operator (@) when assigning a procedural type variable,
  2007. whereas in Free Pascal it is required (unless you use the -So switch, in which case you
  2008. can drop the address operator.) Remark that the modifiers concerning the calling
  2009. conventions (cdecl, pascal, stdcall and popstack stick to the declaration; i.e.
  2010. the following code would give an error:
  2011.  
  2012. Type TOneArgCcall = Procedure (Var X : integer);cdecl;
  2013. var proc : TOneArgCcall;
  2014. Procedure printit (Var X : Integer);
  2015. begin
  2016.   WriteLn (x);
  2017. end;
  2018. begin
  2019. P := @printit;
  2020. end.
  2021.  
  2022. Because the TOneArgCcall type is a procedure that uses the cdecl calling conven-
  2023. tion. At the moment, the method procedural pointers (i.e. pointers that point to
  2024. methods of objects, distinguished by the of object keywords in the declaration)
  2025. are still in an experimental stage.
  2026.  
  2027.  
  2028.  
  2029.  
  2030.  
  2031.  
  2032.  
  2033.  
  2034.  
  2035.  
  2036.  
  2037.  
  2038.  
  2039.  
  2040.  
  2041.  
  2042.  
  2043.  
  2044.  
  2045.  
  2046.  
  2047.  
  2048.  
  2049.  
  2050.  
  2051.  
  2052.  
  2053.  
  2054.  
  2055.  
  2056.  
  2057.  
  2058.                                            36
  2059.  
  2060.  
  2061.  
  2062. Chapter 4
  2063.  
  2064. Objects
  2065.  
  2066. 4.1 Declaration
  2067.  
  2068. Free Pascal supports object oriented programming. In fact, most of the compiler is
  2069. written using objects. Here we present some technical questions regarding object
  2070. oriented programming in Free Pascal. Objects should be treated as a special kind of
  2071. record. The record contains all the fields that are declared in the objects definition,
  2072. and pointers to the methods that are associated to the objects' type.
  2073. An object is declared just as you would declare a record; except that you can now
  2074. declare procedures and functions as if they were part of the record. Objects can
  2075. "inherit" fields and methods from "parent" objects. This means that you can use
  2076. these fields and methods as if they were included in the objects you declared as a
  2077. "child" object.
  2078. Furthermore, you can declare fields, procedures and functions as public or private.
  2079. By default, fields and methods are public, and are exported outside the current
  2080. unit. Fields or methods that are declared private are only accessible in the current
  2081. unit. The prototype declaration of an object is as follows:
  2082.  
  2083.       object types
  2084.  
  2085.     -
  2086.      -                 object                                                                -
  2087.             packed                  heritage                component list            end
  2088.                                                       6object visibility specifier
  2089.     -                                                                                        - 
  2090.  
  2091.     -
  2092.      - heritage ( object type identifier )                                                   - 
  2093.     -
  2094.      - component list                                                                        - 
  2095.                                  field definition              method definition
  2096.                             6                                6
  2097.  
  2098.     -
  2099.      - field definition identifier list : type ;                                             - 
  2100.     -
  2101.      - method definition           function header             ; method directives           - 
  2102.                                    procedure header
  2103.                                   constructor header
  2104.                                   desctuctor header
  2105.  
  2106.  
  2107.  
  2108.                                                 37
  2109.  
  2110.  
  2111.  
  2112.                                                                           4.2. FIELDS
  2113.  
  2114.  
  2115.     -
  2116.         - method directives                                          -
  2117.                                     virtual ;          abstract ;
  2118.     -                                                                         - 
  2119.                 call modifiers ;
  2120.  
  2121.     -
  2122.         - object visibility specifier    private                              - 
  2123.                                          public
  2124.  
  2125.  
  2126.  
  2127. As you can see, you can repeat as many private and public blocks as you want.
  2128. Method definitions are normal function or procedure declarations. You cannot
  2129. put fields after methods in the same block, i.e. the following will generate an error
  2130. when compiling:
  2131.  
  2132. Type MyObj = Object
  2133.            Procedure Doit;
  2134.            Field : Longint;
  2135.         end;
  2136.  
  2137. But the following will be accepted:
  2138.  
  2139. Type MyObj = Object
  2140.           Public
  2141.            Procedure Doit;
  2142.           Private
  2143.            Field : Longint;
  2144.         end;
  2145.  
  2146. because the field is in a di erent section.
  2147. Remark: Free Pascal also supports the packed object. This is the same as an object,
  2148. only the elements (fields) of the object are byte-aligned, just as in the packed record.
  2149. The declaration of a packed object is similar to the declaration of a packed record :
  2150.  
  2151. Type
  2152.   TObj = packed object;
  2153.    Constructor init;
  2154.    ...
  2155.    end;
  2156.   Pobj = ^TObj;
  2157. Var PP : Pobj;
  2158.  
  2159. Similarly, the {$PackRecords } directive acts on objects as well.
  2160.  
  2161.  
  2162. 4.2 Fields
  2163.  
  2164. Object Fields are like record fields. They are accessed in the same way as you
  2165. would access a record field : by using a qualified identifier. Given the following
  2166. declaration:
  2167.  
  2168. Type TAnObject = Object
  2169.            AField : Longint;
  2170.  
  2171.                                                  38
  2172.  
  2173.  
  2174.  
  2175.                                    4.3. CONSTRUCTORS AND DESTRUCTORS
  2176.  
  2177.  
  2178.            Procedure AMethod;
  2179.            end;
  2180. Var AnObject : TAnObject;
  2181.  
  2182. then the following would be a valid assignment:
  2183.  
  2184.   AnObject.AField := 0;
  2185.  
  2186. Inside methods, fields can be accessed using the short identifier:
  2187.  
  2188. Procedure TAnObject.AMethod;
  2189. begin
  2190.   ...
  2191.   AField := 0;
  2192.   ...
  2193. end;
  2194.  
  2195. Or, one can use the self identifier. The self identifier refers to the current instance
  2196. of the object:
  2197.  
  2198. Procedure TAnObject.AMethod;
  2199. begin
  2200.   ...
  2201.   Self.AField := 0;
  2202.   ...
  2203. end;
  2204.  
  2205. You cannot access fields that are in a private section of an object from outside
  2206. the objects' methods. If you do, the compiler will complain about an unknown
  2207. identifier. It is also possible to use the with statement with an object instance:
  2208.  
  2209. With AnObject do
  2210.   begin
  2211.   Afield := 12;
  2212.   AMethod;
  2213.   end;
  2214.  
  2215. In this example, between the begin and end, it is as if AnObject was prepended to
  2216. the Afield and Amethod identifiers. More about this in section 7.2, page 70
  2217.  
  2218.  
  2219. 4.3 Constructors and destructors
  2220.  
  2221. As can be seen in the syntax diagram for an object declaration, Free Pascal supports
  2222. constructors and destructors. You are responsible for calling the constructor and
  2223. the destructor explicitly when using objects. The declaration of a constructor or
  2224. destructor is as follows:
  2225.  
  2226.         Constructors and destructors
  2227.  
  2228.     -
  2229.         - constructor declaration constructor header ; subroutine block      - 
  2230.     -
  2231.         - destructor declaration destructor header ; subroutine block        - 
  2232.  
  2233.                                           39
  2234.  
  2235.  
  2236.  
  2237.                                                                             4.4. METHODS
  2238.  
  2239.  
  2240.        -
  2241.         - constructor header constructor                    identifier            -
  2242.                                                    qualified method identifier
  2243.        -     formal parameter list                                                     - 
  2244.        -
  2245.         - desctructor header destructor                    identifier             -
  2246.                                                   qualified method identifier
  2247.        -     formal parameter list                                                     - 
  2248.  
  2249.  
  2250. A constructor/destructor pair is required if you use virtual methods. In the dec-
  2251. laration of the object type, you should use a simple identifier for the name of
  2252. the constuctor or destructor. When you implement the constructor or destruc-
  2253. tor, you should use a qulified method identifier, i.e. an identifier of the form
  2254. objectidentifier.methodidentifier. Free Pascal supports also the extended
  2255. syntax of the New and Dispose procedures. In case you want to allocate a dynamic
  2256. variable of an object type, you can specify the constructor's name in the call to New.
  2257. The New is implemented as a function which returns a pointer to the instantiated
  2258. object. Consider the following declarations:
  2259.  
  2260. Type
  2261.   TObj = object;
  2262.    Constructor init;
  2263.    ...
  2264.    end;
  2265.   Pobj = ^TObj;
  2266. Var PP : Pobj;
  2267.  
  2268. Then the following 3 calls are equivalent:
  2269.  
  2270.  pp := new (Pobj,Init);
  2271.  
  2272. and
  2273.  
  2274.   new(pp,init);
  2275.  
  2276. and also
  2277.  
  2278.   new (pp);
  2279.   pp^.init;
  2280.  
  2281. In the last case, the compiler will issue a warning that you should use the extended
  2282. syntax of new and dispose to generate instances of an object. You can ignore this
  2283. warning, but it's better programming practice to use the extended syntax to create
  2284. instances of an object. Similarly, the Dispose procedure accepts the name of a
  2285. destructor. The destructor will then be called, before removing the object from the
  2286. heap. In view of the compiler warning remark, the now following Delphi approach
  2287. may be considered a more natural way of object-oriented programming.
  2288.  
  2289. 4.4 Methods
  2290.  
  2291. Object methods are just like ordinary procedures or functions, only they have an
  2292. implicit extra parameter : self. Self points to the object with which the method
  2293. was invoked. When implementing methods, the fully qualified identifier must be
  2294. given in the function header. When declaring methods, a normal identifier must be
  2295. given.
  2296.  
  2297.                                             40
  2298.  
  2299.  
  2300.  
  2301.                                                       4.5. METHOD INVOCATION
  2302.  
  2303.  
  2304. 4.5 Method invocation
  2305.  
  2306. Methods are called just as normal procedures are called, only they have an object
  2307. instance identifier prepended to them (see also chapter 7, page 62). To determine
  2308. which method is called, it is necessary to know the type of the method. We treat
  2309. the di erent types in what follows.
  2310.  
  2311. Static methods
  2312.  
  2313. Static methods are methods that have been declared without a abstract or virtual
  2314. keyword. When calling a static method, the declared (i.e. compile time) method of
  2315. the object is used. For example, consider the following declarations:
  2316.  
  2317. Type
  2318.   TParent = Object
  2319.         ...
  2320.         procedure Doit;
  2321.         ...
  2322.         end;
  2323.   PParent = ^TParent;
  2324.   TChild = Object(TParent)
  2325.         ...
  2326.         procedure Doit;
  2327.         ...
  2328.         end;
  2329.   PChild = ^TChild;
  2330.  
  2331. As it is visible, both the parent and child objects have a method called Doit.
  2332. Consider now the following declarations and calls:
  2333.  
  2334. Var ParentA,ParentB : PParent;
  2335.         Child              : PChild;
  2336.    ParentA := New(PParent,Init);
  2337.    ParentB := New(PChild,Init);
  2338.    Child := New(PChild,Init);
  2339.    ParentA^.Doit;
  2340.    ParentB^.Doit;
  2341.    Child^.Doit;
  2342.  
  2343. Of the three invocations of Doit, only the last one will call TChild.Doit, the other
  2344. two calls will call TParent.Doit. This is because for static methods, the compiler
  2345. determines at compile time which method should be called. Since ParentB is of
  2346. type TParent, the compiler decides that it must be called with TParent.Doit, even
  2347. though it will be created as a TChild. There may be times when you want the
  2348. method that is actually called to depend on the actual type of the object at run-
  2349. time. If so, the method cannot be a static method, but must be a virtual method.
  2350.  
  2351. Virtual methods
  2352.  
  2353. To remedy the situation in the previous section, virtual methods are created. This
  2354. is simply done by appending the method declaration with the virtual modifier.
  2355. Going back to the previous example, consider the following alternative declaration:
  2356.  
  2357.  
  2358.                                         41
  2359.  
  2360.  
  2361.  
  2362.                                                        4.5. METHOD INVOCATION
  2363.  
  2364.  
  2365. Type
  2366.   TParent = Object
  2367.         ...
  2368.         procedure Doit;virtual;
  2369.         ...
  2370.         end;
  2371.   PParent = ^TParent;
  2372.   TChild = Object(TParent)
  2373.         ...
  2374.         procedure Doit;virtual;
  2375.         ...
  2376.         end;
  2377.   PChild = ^TChild;
  2378.  
  2379. As it is visible, both the parent and child objects have a method called Doit.
  2380. Consider now the following declarations and calls :
  2381.  
  2382. Var ParentA,ParentB : PParent;
  2383.         Child           : PChild;
  2384.    ParentA := New(PParent,Init);
  2385.    ParentB := New(PChild,Init);
  2386.    Child := New(PChild,Init);
  2387.    ParentA^.Doit;
  2388.    ParentB^.Doit;
  2389.    Child^.Doit;
  2390.  
  2391. Now, di erent methods will be called, depending on the actual run-time type of the
  2392. object. For ParentA, nothing changes, since it is created as a TParent instance.
  2393. For Child, the situation also doesn't change: it is again created as an instance of
  2394. TChild. For ParentB however, the situation does change: Even though it was de-
  2395. clared as a TParent, it is created as an instance of TChild. Now, when the program
  2396. runs, before calling Doit, the program checks what the actual type of ParentB is,
  2397. and only then decides which method must be called. Seeing that ParentB is of type
  2398. TChild, TChild.Doit will be called. The code for this run-time checking of the ac-
  2399. tual type of an object is inserted by the compiler at compile time. The TChild.Doit
  2400. is said to override the TParent.Doit. It is possible to acces the TParent.Doit from
  2401. within the varTChild.Doit, with the inherited keyword:
  2402.  
  2403. Procedure TChild.Doit;
  2404. begin
  2405.   inherited Doit;
  2406.   ...
  2407. end;
  2408.  
  2409. In the above example, when TChild.Doit is called, the first thing it does is call
  2410. TParent.Doit. You cannot use the inherited keyword on static methods, only on
  2411. virtual methods.
  2412.  
  2413. Abstract methods
  2414.  
  2415. An abstract method is a special kind of virtual method. A method can not be
  2416. abstract if it is not virtual (this is not obvious from the syntax diagram). You
  2417. cannot create an instance of an object that has an abstract method. The reason is
  2418. obvious: there is no method where the compiler could jump to ! A method that is
  2419.  
  2420.                                         42
  2421.  
  2422.  
  2423.  
  2424.                                                                     4.6. VISIBILITY
  2425.  
  2426.  
  2427. declared abstract does not have an implementation for this method. It is up to
  2428. inherited objects to override and implement this method. Continuing our example,
  2429. take a look at this:
  2430.  
  2431. Type
  2432.   TParent = Object
  2433.         ...
  2434.         procedure Doit;virtual;abstract;
  2435.         ...
  2436.         end;
  2437.   PParent=^TParent;
  2438.   TChild = Object(TParent)
  2439.         ...
  2440.         procedure Doit;virtual;
  2441.         ...
  2442.         end;
  2443.   PChild = ^TChild;
  2444.  
  2445. As it is visible, both the parent and child objects have a method called Doit.
  2446. Consider now the following declarations and calls :
  2447.  
  2448. Var ParentA,ParentB : PParent;
  2449.         Child             : PChild;
  2450.     ParentA := New(PParent,Init);
  2451.     ParentB := New(PChild,Init);
  2452.     Child := New(PChild,Init);
  2453.     ParentA^.Doit;
  2454.     ParentB^.Doit;
  2455.     Child^.Doit;
  2456.  
  2457. First of all, Line 3 will generate a compiler error, stating that you cannot generate
  2458. instances of objects with abstract methods: The compiler has detected that PParent
  2459. points to an object which has an abstract method. Commenting line 3 would allow
  2460. compilation of the program. Remark that if you override an abstract method, you
  2461. cannot call the parent method with inherited, since there is no parent method;
  2462. The compiler will detect this, and complain about it, like this:
  2463.  
  2464. testo.pp(32,3) Error: Abstract methods can't be called directly
  2465.  
  2466. If, through some mechanism, an abstract method is called at run-time, then a run-
  2467. time error will occur. (run-time error 211, to be precise)
  2468.  
  2469.  
  2470. 4.6 Visibility
  2471.  
  2472. For objects, only 2 visibility specifiers exist : private and public. If you don't
  2473. specify a visibility specifier, public is assumed. Both methods and fields can be hid-
  2474. den from a programmer by putting them in a private section. The exact visibility
  2475. rule is as follows:
  2476.  
  2477. Private All fields and methods that are in a private block, can only be accessed
  2478.         in the module (i.e. unit or program) that contains the object definition. They
  2479.         can be accessed from inside the object's methods or from outside them e.g.
  2480.         from other objects' methods, or global functions.
  2481.  
  2482.                                           43
  2483.  
  2484.  
  2485.  
  2486.                                                              4.6. VISIBILITY
  2487.  
  2488.  
  2489. Public sections are always accessible, from everywhere. Fields and metods in a
  2490.      public section behave as though they were part of an ordinary record type.
  2491.  
  2492.  
  2493.  
  2494.  
  2495.  
  2496.  
  2497.  
  2498.  
  2499.  
  2500.  
  2501.  
  2502.  
  2503.  
  2504.  
  2505.  
  2506.  
  2507.  
  2508.  
  2509.  
  2510.  
  2511.  
  2512.  
  2513.  
  2514.  
  2515.  
  2516.  
  2517.  
  2518.  
  2519.  
  2520.  
  2521.  
  2522.  
  2523.  
  2524.  
  2525.  
  2526.  
  2527.  
  2528.  
  2529.  
  2530.  
  2531.  
  2532.  
  2533.  
  2534.  
  2535.  
  2536.  
  2537.  
  2538.  
  2539.  
  2540.                                       44
  2541.  
  2542.  
  2543.  
  2544. Chapter 5
  2545.  
  2546. Classes
  2547.  
  2548. In the Delphi approach to Object Oriented Programming, everything revolves around
  2549. the concept of 'Classes'. A class can be seen as a pointer to an object, or a pointer
  2550. to a record.
  2551. remark In earlier versions of Free Pascal it was necessary, in order to use classes, to
  2552. put the objpas unit in the uses clause of your unit or program. This is no longer
  2553. needed as of version 0.99.12. As of version 0.99.12 the system unit contains the
  2554. basic definitions of TObject and TClass, as well as some auxiliary methods for
  2555. using classes. The objpas unit still exists, and contains some redefinitions of basic
  2556. types, so they coincide with Delphi types. The unit will be loaded automatically if
  2557. you specify the -S2 or -Sd options.
  2558.  
  2559.  
  2560. 5.1 Class definitions
  2561.  
  2562. The prototype declaration of a class is as follows :
  2563.  
  2564.       Class types
  2565.  
  2566.     -
  2567.      -                    class                                                                 - 
  2568.                 packed                  heritage             component list              end
  2569.                                                         6class visibility specifier
  2570.     -
  2571.      - heritage ( class type identifier )                                                       - 
  2572.     -
  2573.      - component list                                                                           - 
  2574.                                    field definition                 method definition
  2575.                                    6                            6 property definition
  2576.  
  2577.     -
  2578.      - field definition identifier list : type ;                                                - 
  2579.     -
  2580.      - method definition                                 function header          ; -
  2581.                                          class          procedure header
  2582.                                                   constructor header
  2583.                                                   desctuctor header
  2584.  
  2585.  
  2586.  
  2587.  
  2588.  
  2589.                                                       45
  2590.  
  2591.  
  2592.  
  2593.                                                                 5.2. CLASS INSTANTIATION
  2594.  
  2595.  
  2596.     -                                                                               - 
  2597.                     virtual                                ;    call modifiers ;
  2598.                                  ; abstract
  2599.                                override
  2600.              message             integer constant
  2601.                                  string constant
  2602.     -
  2603.      - class visibility specifier           private                                 - 
  2604.                                            protected
  2605.                                              public
  2606.                                            published
  2607.  
  2608.  
  2609. Again, You can repeat as many private, protected, published and public blocks
  2610. as you want. Methods are normal function or procedure declarations. As you can
  2611. see, the declaration of a class is almost identical to the declaration of an object.
  2612. The real di erence between objects and classes is in the way they are created (see
  2613. further in this chapter). The visibility of the di erent sections is as follows:
  2614.  
  2615. Private All fields and methods that are in a private block, can only be accessed
  2616.       in the module (i.e. unit) that contains the class definition. They can be
  2617.       accessed from inside the classes' methods or from outside them (e.g. from
  2618.       other classes' methods)
  2619. Protected Is the same as Private, except that the members of a Protected
  2620.       section are also accessible to descendent types, even if they are implemented
  2621.       in other modules.
  2622. Public sections are always accessible.
  2623. Published Is the same as a Public section, but the compiler generates also type
  2624.       information that is needed for automatic streaming of these classes. Fields
  2625.       defined in a published section must be of class type. Array peroperties cannot
  2626.       be in a published section.
  2627.  
  2628.  
  2629. 5.2 Class instantiation
  2630.  
  2631. Classes must be created using their constructor. Remember that a class is a pointer
  2632. to an object, so when you declare a variable of some class, the compiler just allocates
  2633. a pointer, not the entire object. The constructor of a class returns a pointer to an
  2634. initialized instance of the object. So, to initialize an instance of some class, you
  2635. would do the following :
  2636.  
  2637.   ClassVar := ClassType.ConstructorName;
  2638.  
  2639. You cannot use the extended syntax of new and dispose to instantiate and destroy
  2640. class instances. That construct is reserved for use with objects only. Calling the
  2641. constructor will provoke a call to getmem, to allocate enough space to hold the class
  2642. instance data. After that, the constuctor's code is executed. The constructor has a
  2643. pointer to it's data, in self.
  2644. Remarks:
  2645.  
  2646.    * The {$PackRecords } directive also a ects classes. i.e. the alignment in
  2647.       memory of the di erent fields depends on the value of the {$PackRecords }
  2648.       directive.
  2649.  
  2650.                                                      46
  2651.  
  2652.  
  2653.  
  2654.                                                                    5.3. METHODS
  2655.  
  2656.  
  2657.    * Just as for objects and records, you can declare a packed class. This has the
  2658.      same e ect as on an object, or record, namely that the elements are aligned
  2659.      on 1-byte boundaries. i.e. as close as possible.
  2660.  
  2661.    * SizeOf(class) will return 4, since a class is but a pointer to an object. To get
  2662.      the size of the class instance data, use the TObject.InstanceSize method.
  2663.  
  2664.  
  2665. 5.3 Methods
  2666.  
  2667. invocation
  2668. Method invocaticn for classes is no di erent than for objects. The following is a
  2669. valid method invocation:
  2670.  
  2671. Var AnObject : TAnObject;
  2672. begin
  2673.   AnObject := TAnObject.Create;
  2674.   ANobject.AMethod;
  2675.  
  2676.  
  2677. Virtual methods
  2678. Classes have virtual methods, just as objects do. There is however a di erence
  2679. between the two. For objects, it is su cient to redeclare the same method in a
  2680. descendent object with the keyword virtual to override it. For classes, the situation
  2681. is di erent: you must override virtual methods with the override keyword. Failing
  2682. to do so, will start a new batch of virtual methods, hiding the previous one. The
  2683. Inherited keyword will not jump to the inherited method, if virtual was used.
  2684. The following code is wrong:
  2685. Type ObjParent = Class
  2686.              Procedure MyProc ; v i r t u a l ;
  2687.          end ;
  2688.          ObjChild     = Class ( ObjPArent )
  2689.            Procedure MyProc ; v i r t u a l ;
  2690.          end ;
  2691. The compiler will produce a warning:
  2692.  
  2693. Warning: An inherited method is hidden by OBJCHILD.MYPROC
  2694.  
  2695. The compiler will compile it, but using Inherited can produce strange e ects.
  2696. The correct declaration is as follows:
  2697. Type ObjParent = Class
  2698.              Procedure MyProc ; v i r t u a l ;
  2699.          end ;
  2700.          ObjChild     = Class ( ObjPArent )
  2701.            Procedure MyProc ; override ;
  2702.          end ;
  2703. This will compile and run without warnings or errors.
  2704.  
  2705.  
  2706.  
  2707.  
  2708.  
  2709.                                           47
  2710.  
  2711.  
  2712.  
  2713.                                                                          5.3. METHODS
  2714.  
  2715.  
  2716. Message methods
  2717. New in classes are message methods. Pointers to message methods are stored in
  2718. a special table, together with the integer or string cnstant that they were declared
  2719. with. They are primarily intended to ease programming of callback functions in
  2720. several GUI toolkits, such as Win32 or GTK. In di erence with Delphi, Free Pascal
  2721. also accepts strings as message identifiers.
  2722. Message methods that are declared with an integer constant can take only one var
  2723. argument (typed or not):
  2724.  Procedure TMyObject . MyHandler ( Var Msg ) ; Message 1 ;
  2725. The method implementation of a message function is no di erent from an ordinary
  2726. method. It is also possible to call a message method directly, but you should not
  2727. do this. Instead use the TObject.Dispatch method.
  2728. The TOBject.Dispatch method can be used to call a message handler. It is de-
  2729. clared in the system unit and will accept a var parameter which must have at the
  2730. first position a cardinal with the message ID that should be called. For example:
  2731. Type
  2732.   TMsg = Record
  2733.         MSGID : C a r d i n a l
  2734.         Data : Pointer ;
  2735. VarMsg : TMSg;
  2736. MyObject . Dispatch ( Msg ) ;
  2737. In this example, the Dispatch method will look at the object and all it's ancestors
  2738. (starting at the object, and searching up the class tree), to see if a message method
  2739. with message MSGID has been declared. If such a method is found, it is called, and
  2740. passed the Msg parameter.
  2741. If no such method is found, DefaultHandler is called. DefaultHandler is a vir-
  2742. tual method of TObject that doesn't do anything, but which can be overridden to
  2743. provide any processing you might need. DefaultHandler is declared as follows:
  2744.     procedure d e f a u l t h a n d l e r ( var message ) ; v i r t u a l ;
  2745. In addition to the message method with a Integer identifier, Free Pascal also
  2746. supports a messae method with a string identifier:
  2747.  Procedure TMyObject . MyStrHandler ( Var Msg ) ; Message ' OnClick ' ;
  2748. The working of the string message handler is the same as the ordinary integer
  2749. message handler:
  2750. The TOBject.DispatchStr method can be used to call a message handler. It is
  2751. declared in the system unit and will accept one parameter which must have at the
  2752. first position a string with the message ID that should be called. For example:
  2753. Type
  2754.   TMsg = Record
  2755.         MsgStr : String [ 1 0 ] ; / / A r b i t r a r y length up to 255 c h a r a c t e r s .
  2756.         Data : Pointer ;
  2757. VarMsg : TMSg;
  2758. MyObject . DispatchStr ( Msg ) ;
  2759. In this example, the DispatchStr method will look at the object and all it's an-
  2760.  
  2761.                                             48
  2762.  
  2763.  
  2764.  
  2765.                                                                                       5.4. PROPERTIES
  2766.  
  2767.  
  2768. cestors (starting at the object, and searching up the class tree), to see if a message
  2769. method with message MsgStr has been declared. If such a method is found, it is
  2770. called, and passed the Msg parameter.
  2771. If no such method is found, DefaultHandlerStr is called. DefaultHandlerStr is a
  2772. virtual method of TObject that doesn't do anything, but which can be overridden to
  2773. provide any processing you might need. DefaultHandlerStr is declared as follows:
  2774.     procedure D e f a u l t H a n d l e r S t r ( var message ) ; v i r t u a l ;
  2775. In addition to this mechanism, a string message method accepts a self parameter:
  2776.   TMyObject . StrMsgHandler ( Data : Pointer ; S e l f : TMyObject ) ; Message ' OnClick ' ;
  2777. When encountering such a method, the compiler will generate code that loads the
  2778. Self parameter into the object instance pointer. The result of this is that it is
  2779. possible to pass Self as a parameter to such a method.
  2780. remark: The type of the Self parameter must be of the same class as the class you
  2781. define the method for.
  2782.  
  2783.  
  2784. 5.4 Properties
  2785.  
  2786. Classes can contain properties as part of their fields list. A property acts like a
  2787. normal field, i.e. you can get or set it's value, but allows to redirect the access
  2788. of the field through functions and procedures. They provide a means to associate
  2789. an action with an assignment of or a reading from a class 'field'. This allows for
  2790. e.g. checking that a value is valid when assigning, or, when reading, it allows to
  2791. construct the value on the fly. Moreover, properties can be read-only or write only.
  2792. The prototype declaration of a property is as follows:
  2793.  
  2794.      Properties
  2795.  
  2796.     -
  2797.      - property definition property identifier                                             -
  2798.                                                                    property interface
  2799.     -      property specifiers                                                                  - 
  2800.     -
  2801.      - property interface                                             : type identifier -
  2802.                                    property parameter list
  2803.     -                                                                                           - 
  2804.            index integerconstant
  2805.  
  2806.     -
  2807.      - property parameter list [             parameter declaration               ]              - 
  2808.                                              6                ;
  2809.  
  2810.     -
  2811.      - property specifiers                                                            -
  2812.                                     read specifier            write specifier
  2813.     -                                                                                           - 
  2814.            default specifier
  2815.     -
  2816.      - read specifier read field or method                                                      - 
  2817.     -
  2818.      - write specifier write field or method                                                    - 
  2819.     -
  2820.      - default specifier          default                                                       - 
  2821.                                                   constant
  2822.                                         nodefault
  2823.  
  2824.  
  2825.                                                    49
  2826.  
  2827.  
  2828.  
  2829.                                                                5.4. PROPERTIES
  2830.  
  2831.  
  2832.     -
  2833.         - field or method     field identifier                             - 
  2834.                              method identifier
  2835.  
  2836.  
  2837. A read specifier is either the name of a field that contains the property, or the
  2838. name of a method function that has the same return type as the property type.
  2839. In the case of a simple type, this function must not accept an argument. A read
  2840. specifier is optional, making the property write-only. A write specifier is op-
  2841. tional: If there is no write specifier, the property is read-only. A write specifier
  2842. is either the name of a field, or the name of a method procedure that accepts as a
  2843. sole argument a variable of the same type as the property. The section (private,
  2844. published) in which the specified function or procedure resides is irrelevant. Usu-
  2845. ally, however, this will be a protected or private method. Example: Given the
  2846. following declaration:
  2847.  
  2848. Type
  2849.   MyClass = Class
  2850.         Private
  2851.         Field1 : Longint;
  2852.         Field2 : Longint;
  2853.         Field3 : Longint;
  2854.         Procedure Sety (value : Longint);
  2855.         Function Gety : Longint;
  2856.         Function Getz : Longint;
  2857.         Public
  2858.         Property X : Longint Read Field1 write Field2;
  2859.         Property Y : Longint Read GetY Write Sety;
  2860.         Property Z : Longint Read GetZ;
  2861.         end;
  2862. Var MyClass : TMyClass;
  2863.  
  2864. The following are valid statements:
  2865.  
  2866. WriteLn ('X : ',MyClass.X);
  2867. WriteLn ('Y : ',MyClass.Y);
  2868. WriteLn ('Z : ',MyClass.Z);
  2869. MyClass.X := 0;
  2870. MyClass.Y := 0;
  2871.  
  2872. But the following would generate an error:
  2873.  
  2874. MyClass.Z := 0;
  2875.  
  2876. because Z is a read-only property. What happens in the above statements is that
  2877. when a value needs to be read, the compiler inserts a call to the various getNNN
  2878. methods of the object, and the result of this call is used. When an assignment is
  2879. made, the compiler passes the value that must be assigned as a paramater to the
  2880. various setNNN methods. Because of this mechanism, properties cannot be passed
  2881. as var arguments to a function or procedure, since there is no known address of the
  2882. property (at least, not always). If the property definition contains an index, then
  2883. the read and write specifiers must be a function and a procedure. Moreover, these
  2884. functions require an additional parameter : An integer parameter. This allows to
  2885. read or write several properties with the same function. For this, the properties
  2886. must have the same type. The following is an example of a property with an index:
  2887.  
  2888.                                             50
  2889.  
  2890.  
  2891.  
  2892.                                                              5.4. PROPERTIES
  2893.  
  2894.  
  2895. uses objpas;
  2896. Type TPoint = Class(TObject)
  2897.            Private
  2898.            FX,FY : Longint;
  2899.            Function GetCoord (Index : Integer): Longint;
  2900.            Procedure SetCoord (Index : Integer; Value : longint);
  2901.            Public
  2902.            Property X : Longint index 1 read GetCoord Write SetCoord;
  2903.            Property Y : Longint index 2 read GetCoord Write SetCoord;
  2904.            Property Coords[Index : Integer] Read GetCoord;
  2905.            end;
  2906. Procedure TPoint.SetCoord (Index : Integer; Value : Longint);
  2907. begin
  2908.   Case Index of
  2909.    1 : FX := Value;
  2910.    2 : FY := Value;
  2911.   end;
  2912. end;
  2913. Function TPoint.GetCoord (INdex : Integer) : Longint;
  2914. begin
  2915.   Case Index of
  2916.    1 : Result := FX;
  2917.    2 : Result := FY;
  2918.   end;
  2919. end;
  2920. Var P : TPoint;
  2921. begin
  2922.   P := TPoint.create;
  2923.   P.X := 2;
  2924.   P.Y := 3;
  2925.   With P do
  2926.         WriteLn ('X=',X,' Y=',Y);
  2927. end.
  2928.  
  2929. When the compiler encounters an assignment to X, then SetCoord is called with
  2930. as first parameter the index (1 in the above case) and with as a second parameter
  2931. the value to be set. Conversely, when reading the value of X, the compiler calls
  2932. GetCoord and passes it index 1. Indexes can only be integer values. You can also
  2933. have array properties. These are properties that accept an index, just as an array
  2934. does. Only now the index doesn't have to be an ordinal type, but can be any type.
  2935. A read specifier for an array property is the name method function that has the
  2936. same return type as the property type. The function must accept as a sole arguent
  2937. a variable of the same type as the index type. For an array property, you cannot
  2938. specify fields as read specifiers.
  2939. A write specifier for an array property is the name of a method procedure that
  2940. accepts two arguments: The first argument has the same type as the index, and
  2941. the second argument is a parameter of the same type as the property type. As an
  2942. example, see the following declaration:
  2943.  
  2944. Type TIntList = Class
  2945.           Private
  2946.           Function GetInt (I : Longint) : longint;
  2947.           Function GetAsString (A : String) : String;
  2948.  
  2949.  
  2950.                                            51
  2951.  
  2952.  
  2953.  
  2954.                                                                 5.4. PROPERTIES
  2955.  
  2956.  
  2957.        Procedure SetInt (I : Longint; Value : Longint;);
  2958.        Procedure SetAsString (A : String; Value : String);
  2959.        Public
  2960.        Property Items [i : Longint] : Longint Read GetInt
  2961.                                                          Write SetInt;
  2962.        Property StrItems [S : String] : String Read GetAsString
  2963.                                                           Write SetAsstring;
  2964.        end;
  2965. Var AIntList : TIntList;
  2966.  
  2967. Then the following statements would be valid:
  2968.  
  2969. AIntList.Items[26] := 1;
  2970. AIntList.StrItems['twenty-five'] := 'zero';
  2971. WriteLn ('Item 26 : ',AIntList.Items[26]);
  2972. WriteLn ('Item 25 : ',AIntList.StrItems['twenty-five']);
  2973.  
  2974. While the following statements would generate errors:
  2975.  
  2976. AIntList.Items['twenty-five'] := 1;
  2977. AIntList.StrItems[26] := 'zero';
  2978.  
  2979. Because the index types are wrong. Array properties can be declared as default
  2980. properties. This means that it is not necessary to specify the property name when
  2981. assigning or reading it. If, in the previous example, the definition of the items
  2982. property would have been
  2983.  
  2984.  Property Items[i : Longint]: Longint Read GetInt
  2985.                                              Write SetInt; Default;
  2986.  
  2987. Then the assignment
  2988.  
  2989. AIntList.Items[26] := 1;
  2990.  
  2991. Would be equivalent to the following abbreviation.
  2992.  
  2993. AIntList[26] := 1;
  2994.  
  2995. You can have only one default property per class, and descendent classes cannot
  2996. redeclare the default property.
  2997.  
  2998.  
  2999.  
  3000.  
  3001.  
  3002.  
  3003.  
  3004.  
  3005.  
  3006.  
  3007.  
  3008.  
  3009.  
  3010.  
  3011.                                        52
  3012.  
  3013.  
  3014.  
  3015. Chapter 6
  3016.  
  3017. Expressions
  3018.  
  3019. Expressions occur in assignments or in tests. Expressions produce a value, of a
  3020. certain type. Expressions are built with two components: Operators and their
  3021. operands. Usually an operator is binary, i.e. it requires 2 operands. Binary op-
  3022. erators occur always between the operands (as in X/Y). Sometimes an operator is
  3023. unary, i.e. it requires only one argument. A unary operator occurs always before
  3024. the operand, as in -X.
  3025. When using multiple operands in an expression, the precedence rules of table (6.1)
  3026. are used. When determining the precedence, the compiler uses the following rules:
  3027.  
  3028.   1. Operators with equal precedence are executed from left to right.
  3029.  
  3030.   2. In operations with unequal precedences the operands belong to the operater
  3031.       with the highest precedence. For example, in 5*3+7, the multiplication is
  3032.       higher in precedence than the addition, so it is executed first. The result
  3033.       would be 22.
  3034.  
  3035.   3. If parentheses are used in an epression, their contents is evaluated first. Thus,
  3036.       5*(3+7) would result in 50.
  3037.  
  3038.  
  3039. 6.1 Expression syntax
  3040.  
  3041. An expression applies relational operators to simple expressions. Simple expressions
  3042. are a series of terms (what a term is, is explained below), joined by adding operators.
  3043.  
  3044.       Expressions
  3045.  
  3046.  
  3047.  
  3048.                           Table 6.1: Precedence of operators
  3049.  
  3050.      Operator                            Precedence       Category
  3051.      Not, @                              Highest (first) Unary operators
  3052.      * / div mod and shl shr as Second                    Multiplying operators
  3053.      + - or xor                          Third            Adding operators
  3054.      < <> < > <= >= in is                Lowest (Last)    relational operators
  3055.  
  3056.  
  3057.  
  3058.                                           53
  3059.  
  3060.  
  3061.  
  3062.                                                                         6.1. EXPRESSION SYNTAX
  3063.  
  3064.  
  3065.        -
  3066.        - expression simple expression                                                    - 
  3067.                                                               *     simple expression
  3068.                                                               <=
  3069.                                                               >
  3070.                                                               >=
  3071.                                                               =
  3072.                                                               <>
  3073.                                                               in
  3074.                                                               is
  3075.  
  3076.        -
  3077.        - simple expression                    term                                       - 
  3078.                                            6 +-orxor
  3079.  
  3080. The following are valid expressions:
  3081.  
  3082. GraphResult<>grError
  3083. (DoItToday=Yes) and (DoItTomorrow=No);
  3084. Day in Weekend
  3085.  
  3086. And here are some simple expressions:
  3087.  
  3088. A + B
  3089. -Pi
  3090. ToBe or NotToBe
  3091.  
  3092. Terms consist of factors, connected by multiplication operators.
  3093.  
  3094.        Terms
  3095.  
  3096.        -
  3097.        - term            factor                                                          - 
  3098.                   6 */divmodandshlshras
  3099. Here are some valid terms:
  3100.  
  3101. 2 * Pi
  3102. A Div B
  3103. (DoItToday=Yes) and (DoItTomorrow=No);
  3104.  
  3105. Factors are all other constructions:
  3106.  
  3107.        Factors
  3108.  
  3109.  
  3110.                                                         54
  3111.  
  3112.  
  3113.  
  3114.                                                                  6.2. FUNCTION CALLS
  3115.  
  3116.  
  3117.     -
  3118.      - factor      ( expression )                                                        - 
  3119.                    variable reference
  3120.                          function call
  3121.                    unsigned constant
  3122.                          not factor
  3123.                          sign factor
  3124.                     set constructor
  3125.                         value typecast
  3126.                         address factor
  3127.  
  3128.     -
  3129.      - unsigned constant           unsigned number                                       - 
  3130.                                     character string
  3131.                                   constant identifier
  3132.                                           Nil
  3133.  
  3134.  
  3135.  
  3136. 6.2 Function calls
  3137.  
  3138. Function calls are part of expressions (although, using extended syntax, they can
  3139. be statements too). They are constructed as follows:
  3140.  
  3141.      Function calls
  3142.  
  3143.     -
  3144.      - function call              function identifier                                    -
  3145.                                  method designator              actual parameter list
  3146.                             qualified method designator
  3147.                                   variable reference
  3148.     -                                                                                    - 
  3149.  
  3150.     -
  3151.      - actual parameter list (                             )                             - 
  3152.                                            expression
  3153.                                           6       ,
  3154.  
  3155.  
  3156.  
  3157. The variable reference must be a procedural type variable reference. A method
  3158. designator can only be used inside the method of an object. A qualified method
  3159. designator can be used outside object methods too. The function that will get called
  3160. is the function with a declared parameter list that matches the actual parameter
  3161. list. This means that
  3162.  
  3163.   1. The number of actual parameters must equal the number of declared param-
  3164.      eters.
  3165.  
  3166.   2. The types of the parameters must be compatible. For variable reference pa-
  3167.      rameters, the parameter types must be exactly the same.
  3168.  
  3169. If no matching function is found, then the compiler will generate an error. Depend-
  3170. ing on the fact of the function is overloaded (i.e. multiple functions with the same
  3171. name, but di erent parameter lists) the error will be di erent. There are cases when
  3172. the compiler will not execute the function call in an expression. This is the case
  3173. when you are assigning a value to a procedural type variable, as in the following
  3174. example:
  3175.  
  3176.  
  3177.                                                  55
  3178.  
  3179.  
  3180.  
  3181.                                                       6.3. SET CONSTRUCTORS
  3182.  
  3183.  
  3184. Type
  3185.   FuncType = Function: Integer;
  3186. Var A : Integer;
  3187. Function AddOne : Integer;
  3188. begin
  3189.   A := A+1;
  3190.   AddOne := A;
  3191. end;
  3192. Var F : FuncType;
  3193.         N : Integer;
  3194. begin
  3195.   A := 0;
  3196.   F := AddOne; { Assign AddOne to F, Don't call AddOne}
  3197.   N := AddOne; { N := 1 !!}
  3198. end.
  3199.  
  3200. In the above listing, the assigment to F will not cause the function AddOne to
  3201. be called. The assignment to N, however, will call AddOne. A problem with this
  3202. syntax is the following construction:
  3203.  
  3204. If F = AddOne Then
  3205.   DoSomethingHorrible;
  3206.  
  3207. Should the compiler compare the addresses of F and AddOne, or should it call both
  3208. functions, and compare the result ? Free Pascal solves this by deciding that a
  3209. procedural variable is equivalent to a pointer. Thus the compiler will give a type
  3210. mismatch error, since AddOne is considered a call to a function with integer result,
  3211. and F is a pointer, Hence a type mismatch occurs. How then, should one compare
  3212. whether F points to the function AddOne ? To do this, one should use the address
  3213. operator @:
  3214.  
  3215. If F = @AddOne Then
  3216.   WriteLn ('Functions are equal');
  3217.  
  3218. The left hand side of the boolean expression is an address. The right hand side
  3219. also, and so the compiler compares 2 addresses. How to compare the values that
  3220. both functions return ? By adding an empty parameter list:
  3221.  
  3222.   If F()=Addone then
  3223.         WriteLn ('Functions return same values ');
  3224.  
  3225. Remark that this behaviour is not compatible with Delphi syntax.
  3226.  
  3227.  
  3228. 6.3 Set constructors
  3229.  
  3230. When you want to enter a set-type constant in an expression, you must give a set
  3231. constructor. In essence this is the same thing as when you define a set type, only you
  3232. have no identifier to identify the set with. A set constructor is a comma separated
  3233. list of expressions, enclosed in square brackets.
  3234.  
  3235.         Set constructors
  3236.  
  3237.  
  3238.                                           56
  3239.  
  3240.  
  3241.  
  3242.                                                         6.4. VALUE TYPECASTS
  3243.  
  3244.  
  3245.     -
  3246.      - set constructor [                        ]                           - 
  3247.                                   set group
  3248.                                   6 ,
  3249.     -
  3250.      - set group expression                                                 - 
  3251.                                    .. expression
  3252.  
  3253.  
  3254.  
  3255. All set groups and set elements must be of the same ordinal type. The empty set
  3256. is denoted by [], and it can be assigned to any type of set. A set group with a
  3257. range [A..Z] makes all values in the range a set element. If the first range specifier
  3258. has a bigger ordinal value than the second the set is empty, e.g., [Z..A] denotes an
  3259. empty set. The following are valid set constructors:
  3260.  
  3261. [today,tomorrow]
  3262. [Monday..Friday,Sunday]
  3263. [ 2, 3*2, 6*2, 9*2 ]
  3264. ['A'..'Z','a'..'z','0'..'9']
  3265.  
  3266.  
  3267. 6.4 Value typecasts
  3268.  
  3269. Sometimes it is necessary to change the type of an expression, or a part of the
  3270. expression, to be able to be assignment compatible. This is done through a value
  3271. typecast. The syntax diagram for a value typecast is as follows:
  3272.  
  3273.      Typecasts
  3274.  
  3275.     -
  3276.      - value typecast type identifier ( expression )                        - 
  3277.  
  3278.  
  3279. Value typecasts cannot be used on the left side of assignments, as variable typecasts.
  3280. Here are some valid typecasts:
  3281.  
  3282. Byte('A')
  3283. Char(48)
  3284. boolean(1)
  3285. longint(@Buffer)
  3286.  
  3287. The type size of the expression and the size of the type cast must be the same.
  3288. That is, the following doesn't work:
  3289.  
  3290. Integer('A')
  3291. Char(4875)
  3292. boolean(100)
  3293. Word(@Buffer)
  3294.  
  3295. This is di erent from Delphi or Turbo Pascal behaviour.
  3296.  
  3297.  
  3298.  
  3299.  
  3300.  
  3301.                                           57
  3302.  
  3303.  
  3304.  
  3305.                                                                6.5. THE @ OPERATOR
  3306.  
  3307.  
  3308. 6.5 The @ operator
  3309.  
  3310. The address operator @ returns the address of a variable, procedure or function. It
  3311. is used as follows:
  3312.  
  3313.         Address factor
  3314.  
  3315.     -
  3316.         - addressfactor @           variable reference                       - 
  3317.                                    procedure identifier
  3318.                                     function identifier
  3319.                                 qualified method identifier
  3320.  
  3321.  
  3322. The @ operator returns a typed pointer if the $T switch is on. If the $T switch
  3323. is o  then the address operator returns an untyped pointer, which is assigment
  3324. compatible with all pointer types. The type of the pointer is ^T, where T is the type
  3325. of the variable reference. For example, the following will compile
  3326.  
  3327. Program tcast;
  3328. {$T-} { @ returns untyped pointer }
  3329.  
  3330. Type art = Array[1..100] of byte;
  3331. Var Buffer : longint;
  3332.         PLargeBuffer : ^art;
  3333.  
  3334. begin
  3335.  PLargeBuffer := @Buffer;
  3336. end.
  3337.  
  3338. Changing the {$T-} to {$T+} will prevent the compiler from compiling this. It will
  3339. give a type mismatch error. By default, the address operator returns an untyped
  3340. pointer. Applying the address operator to a function, method, or procedure identi-
  3341. fier will give a pointer to the entry point of that function. The result is an untyped
  3342. pointer. By default, you must use the address operator if you want to assign a value
  3343. to a procedural type variable. This behaviour can be avoided by using the -So or
  3344. -S2 switches, which result in a more compatible Delphi or Turbo Pascal syntax.
  3345.  
  3346.  
  3347. 6.6 Operators
  3348.  
  3349. Operators can be classified according to the type of expression they operate on. We
  3350. will discuss them type by type.
  3351.  
  3352.  
  3353. Arithmetic operators
  3354. Arithmetic operators occur in arithmetic operations, i.e. in expressions that con-
  3355. tain integers or reals. There are 2 kinds of operators : Binary and unary arithmetic
  3356. operators. Binary operators are listed in table (6.2), unary operators are listed in
  3357. table (6.3). With the exception of Div and Mod, which accept only integer expres-
  3358. sions as operands, all operators accept real and integer expressions as operands. For
  3359. binary operators, the result type will be integer if both operands are integer type
  3360. expressions. If one of the operands is a real type expression, then the result is real.
  3361.  
  3362.                                             58
  3363.  
  3364.  
  3365.  
  3366.                                                                        6.6. OPERATORS
  3367.  
  3368.  
  3369.  
  3370.                         Table 6.2: Binary arithmetic operators
  3371.  
  3372.                                 Operator Operation
  3373.                                 +           Addition
  3374.                                 -           Subtraction
  3375.                                 *           Multiplication
  3376.                                 /           Division
  3377.                                 Div         Integer division
  3378.                                 Mod         Remainder
  3379.  
  3380.  
  3381.                         Table 6.3: Unary arithmetic operators
  3382.  
  3383.                                  Operator Operation
  3384.                                  +          Sign identity
  3385.                                  -          Sign inversion
  3386.  
  3387.  
  3388. As an exception : division (/) results always in real values. For unary operators,
  3389. the result type is always equal to the expression type. The division (/) and Mod
  3390. operator will cause run-time errors if the second argument is zero. The sign of the
  3391. result of a Mod operator is the same as the sign of the left side operand of the Mod
  3392. operator. In fact, the Mod operator is equivalent to the following operation :
  3393.  
  3394.   I mod J = I - (I div J) * J
  3395.  
  3396. but it executes faster than the right hand side expression.
  3397.  
  3398.  
  3399. Logical operators
  3400. Logical operators act on the individual bits of ordinal expressions. Logical operators
  3401. require operands that are of an integer type, and produce an integer type result.
  3402. The possible logical operators are listed in table (6.4).           The following are valid
  3403. logical expressions:
  3404.  
  3405. A shr 1 { same as A div 2, but faster}
  3406. Not 1      { equals -2 }
  3407. Not 0      { equals -1 }
  3408. Not -1     { equals 0 }
  3409. B shl 2 { same as B * 2 for integers }
  3410.  
  3411.  
  3412.                                 Table 6.4: Logical operators
  3413.  
  3414.                          Operator Operation
  3415.                          not           Bitwise negation (unary)
  3416.                          and           Bitwise and
  3417.                          or            Bitwise or
  3418.                          xor           Bitwise xor
  3419.                          shl           Bitwise shift to the left
  3420.                          shr           Bitwise shift to the right
  3421.  
  3422.  
  3423.                                             59
  3424.  
  3425.  
  3426.  
  3427.                                                                    6.6. OPERATORS
  3428.  
  3429.  
  3430.  
  3431.                                Table 6.5: Boolean operators
  3432.  
  3433.                          Operator Operation
  3434.                          not           logical negation (unary)
  3435.                          and           logical and
  3436.                          or            logical or
  3437.                          xor           logical xor
  3438.  
  3439.  
  3440. 1 or 2     { equals 3 }
  3441. 3 xor 1 { equals 2 }
  3442.  
  3443.  
  3444. Boolean operators
  3445. Boolean operators can be considered logical operations on a type with 1 bit size.
  3446. Therefore the shl and shr operations have little sense. Boolean operators can only
  3447. have boolean type operands, and the resulting type is always boolean. The possible
  3448. operators are listed in table (6.5) Remark that boolean expressions are ALWAYS
  3449. evaluated with short-circuit evaluation. This means that from the moment the
  3450. result of the complete expression is known, evaluation is stopped and the result is
  3451. returned. For instance, in the following expression:
  3452.  
  3453.  B := True or MaybeTrue;
  3454.  
  3455. The compiler will never look at the value of MaybeTrue, since it is obvious that
  3456. the expression will always be true. As a result of this strategy, if MaybeTrue is
  3457. a function, it will not get called ! (This can have surprising e ects when used in
  3458. conjunction with properties)
  3459.  
  3460.  
  3461. String operators
  3462. There is only one string operator : +. It's action is to concatenate the contents of
  3463. the two strings (or characters) it stands between. You cannot use + to concatenate
  3464. null-terminated (PChar) strings. The following are valid string operations:
  3465.  
  3466.   'This is ' + 'VERY ' + 'easy !'
  3467.   Dirname+'\'
  3468.  
  3469. The following is not:
  3470.  
  3471. Var Dirname = Pchar;
  3472. ...Dirname := Dirname+'\';
  3473. Because Dirname is a null-terminated string.
  3474.  
  3475.  
  3476. Set operators
  3477. The following operations on sets can be performed with operators: Union, di erence
  3478. and intersection. The operators needed for this are listed in table (6.6). The set
  3479. type of the operands must be the same, or an error will be generated by the compiler.
  3480.  
  3481.  
  3482.                                             60
  3483.  
  3484.  
  3485.  
  3486.                                                                 6.6. OPERATORS
  3487.  
  3488.  
  3489.  
  3490.                                 Table 6.6: Set operators
  3491.  
  3492.                                 Operator Action
  3493.                                 +           Union
  3494.                                 -           Di erence
  3495.                                 *           Intersection
  3496.  
  3497.  
  3498.                              Table 6.7: Relational operators
  3499.  
  3500.                         Operator Action
  3501.                         =              Equal
  3502.                         <>             Not equal
  3503.                         <              Stricty less than
  3504.                         >              Strictly greater than
  3505.                         <=             Less than or equal
  3506.                         >=             Greater than or equal
  3507.                         in             Element of
  3508.  
  3509.  
  3510. Relational operators
  3511. The relational operators are listed in table (6.7) Left and right operands must be
  3512. of the same type. You can only mix integer and real types in relational expressions.
  3513. Comparing strings is done on the basis of their ASCII code representation. When
  3514. comparing pointers, the addresses to which they point are compared. This also is
  3515. true for PChar type pointers. If you want to compare the strings the Pchar points
  3516. to, you must use the StrComp function from the strings unit. The in returns True
  3517. if the left operand (which must have the same ordinal type as the set type) is an
  3518. element of the set which is the right operand, otherwise it returns False
  3519.  
  3520.  
  3521.  
  3522.  
  3523.  
  3524.  
  3525.  
  3526.  
  3527.  
  3528.  
  3529.  
  3530.  
  3531.  
  3532.  
  3533.  
  3534.  
  3535.  
  3536.  
  3537.  
  3538.  
  3539.  
  3540.  
  3541.  
  3542.                                            61
  3543.  
  3544.  
  3545.  
  3546. Chapter 7
  3547.  
  3548. Statements
  3549.  
  3550. The heart of each algorithm are the actions it takes. These actions are contained
  3551. in the statements of your program or unit. You can label your statements, and
  3552. jump to them (within certain limits) with Goto statements. This can be seen in the
  3553. following syntax diagram:
  3554.  
  3555.      Statements
  3556.  
  3557.     -
  3558.      - statement                                                          - 
  3559.                        label :            simple statement
  3560.                                         structured statement
  3561.                                            asm statement
  3562.  
  3563.  
  3564. A label can be an identifier or an integer digit.
  3565.  
  3566.  
  3567. 7.1 Simple statements
  3568.  
  3569. A simple statement cannot be decomposed in separate statements. There are basi-
  3570. cally 4 kinds of simple statements:
  3571.  
  3572.      Simple statements
  3573.  
  3574.     -
  3575.      - siple statement         assignment statement                       - 
  3576.                                procedure statement
  3577.                                   goto statement
  3578.                                   raise statement
  3579.  
  3580.  
  3581. Of these statements, the raise statement will be explained in the chapter on Excep-
  3582. tions (chapter 10, page 90)
  3583.  
  3584.  
  3585. Assignments
  3586. Assignments give a value to a variable, replacing any previous value the variable
  3587. might have had:
  3588.  
  3589.                                             62
  3590.  
  3591.  
  3592.  
  3593.                                                                 7.1. SIMPLE STATEMENTS
  3594.  
  3595.  
  3596.  
  3597.                      Table 7.1: Allowed C constructs in Free Pascal
  3598.            Assignment                                                           Result
  3599.            a += b                     Adds b to a, and stores the result in a.
  3600.            a -= b            Substracts b from a, and stores the result in a.
  3601.            a *= b            Multiplies a with b, and stores the result in a.
  3602.            a /= b           Divides a through b, and stores the result in a.
  3603.  
  3604.  
  3605.  
  3606.      Assignments
  3607.  
  3608.     -
  3609.      - assignment statement            variable reference         :=         expression    - 
  3610.                                        function identifier       +=
  3611.                                                                   -=
  3612.                                                                   *=
  3613.                                                                   /=
  3614.  
  3615.  
  3616. In addition to the standard Pascal assignment operator ( := ), which simply re-
  3617. places the value of the varable with the value resulting from the expression on the
  3618. right of the := operator, Free Pascal supports some c-style constructions. All
  3619. available constructs are listed in table (7.1).          For these constructs to work, you
  3620. should specify the -Sc command-line switch.
  3621. Remark: These constructions are just for typing convenience, they don't generate
  3622. di erent code. Here are some examples of valid assignment statements:
  3623.  
  3624. X := X+Y;
  3625. X+=Y;          { Same as X := X+Y, needs -Sc command line switch}
  3626. X/=2;          { Same as X := X/2, needs -Sc command line switch}
  3627. Done := False;
  3628. Weather := Good;
  3629. MyPi := 4* Tan(1);
  3630.  
  3631.  
  3632. Procedure statements
  3633. Procedure statements are calls to subroutines. There are di erent possibilities for
  3634. procedure calls: A normal procedure call, an object method call (fully qualified
  3635. or not), or even a call to a procedural type variable. All types are present in the
  3636. following diagram.
  3637.  
  3638.      Procedure statements
  3639.  
  3640.     -
  3641.      - procedure statement               procedure identifier           -
  3642.                                           method identifier
  3643.                                       qualified method identifier
  3644.                                           variable reference
  3645.     -                                                                                      - 
  3646.              actual parameter list
  3647.  
  3648.  
  3649.  
  3650.  
  3651.                                                63
  3652.  
  3653.  
  3654.  
  3655.                                                7.2. STRUCTURED STATEMENTS
  3656.  
  3657.  
  3658. The Free Pascal compiler will look for a procedure with the same name as given
  3659. in the procedure statement, and with a declared parameter list that matches the
  3660. actual parameter list. The following are valid procedure statements:
  3661.  
  3662. Usage;
  3663. WriteLn('Pascal is an easy language !');
  3664. Doit();
  3665.  
  3666.  
  3667. Goto statements
  3668. Free Pascal supports the goto jump statement. Its prototype syntax is
  3669.  
  3670.        Goto statement
  3671.  
  3672.        -
  3673.        - goto statement goto label                                       - 
  3674.  
  3675.  
  3676. When using goto statements, you must keep the following in mind:
  3677.  
  3678.   1. The jump label must be defined in the same block as the Goto statement.
  3679.   2. Jumping from outside a loop to the inside of a loop or vice versa can have
  3680.        strange e ects.
  3681.   3. To be able to use the Goto statement, you need to specify the -Sg compiler
  3682.        switch.
  3683.  
  3684. Goto statements are considered bad practice and should be avoided as much as
  3685. possible. It is always possible to replace a goto statement by a construction that
  3686. doesn't need a goto, although this construction may not be as clear as a goto
  3687. statement. For instance, the following is an allowed goto statement:
  3688.  
  3689. label
  3690.   jumpto;
  3691. ...
  3692. Jumpto :
  3693.   Statement;
  3694. ...
  3695. Goto jumpto;
  3696. ...
  3697.  
  3698. 7.2 Structured statements
  3699.  
  3700. Structured statements can be broken into smaller simple statements, which should
  3701. be executed repeatedly, conditionally or sequentially:
  3702.  
  3703.        Structured statements
  3704.  
  3705.        -
  3706.        - structured statement    compound statement                      - 
  3707.                                  repetitive statement
  3708.                                  conditional statement
  3709.                                  exception statement
  3710.                                     with statement
  3711.  
  3712.                                          64
  3713.  
  3714.  
  3715.  
  3716.                                                    7.2. STRUCTURED STATEMENTS
  3717.  
  3718.  
  3719.  
  3720.  
  3721. Conditional statements come in 2 flavours :
  3722.  
  3723.      Conditional statements
  3724.  
  3725.     -
  3726.      - conditional statement           if statement                                        - 
  3727.                                       case statement
  3728.  
  3729.  
  3730. Repetitive statements come in 3 flavours:
  3731.  
  3732.      Repetitive statements
  3733.  
  3734.     -
  3735.      - repetitive statement           for statament                                        - 
  3736.                                      repeat statement
  3737.                                      while statement
  3738.  
  3739.  
  3740. The following sections deal with each of these statements.
  3741.  
  3742.  
  3743. Compound statements
  3744. Compound statements are a group of statements, separated by semicolons, that are
  3745. surrounded by the keywords Begin and End. The Last statement doesn't need to
  3746. be followed by a semicolon, although it is allowed. A compound statement is a way
  3747. of grouping statements together, executing the statements sequentially. They are
  3748. treated as one statement in cases where Pascal syntax expects 1 statement, such as
  3749. in if ... then statements.
  3750.  
  3751.      Compound statements
  3752.  
  3753.     -
  3754.      - compound statement begin               statement           end                      - 
  3755.                                             6      ;
  3756.  
  3757.  
  3758.  
  3759. The Case statement
  3760. Free Pascal supports the case statement. Its syntax diagram is
  3761.  
  3762.      Case statement
  3763.  
  3764.     -
  3765.      - case statement case expression of                  case                             -
  3766.                                                          6;              else part    ;
  3767.     -     end                                                                              - 
  3768.     -
  3769.      - case      constant                               : statement                        - 
  3770.                  6              .. constant
  3771.                                 ,
  3772.  
  3773.  
  3774.                                              65
  3775.  
  3776.  
  3777.  
  3778.                                               7.2. STRUCTURED STATEMENTS
  3779.  
  3780.  
  3781.        -
  3782.         - else part else statement                                         - 
  3783.  
  3784.  
  3785.  
  3786. The constants appearing in the various case parts must be known at compile-
  3787. time, and can be of the following types : enumeration types, Ordinal types (ex-
  3788. cept boolean), and chars. The expression must be also of this type, or a compiler
  3789. error will occur. All case constants must have the same type. The compiler will
  3790. evaluate the expression. If one of the case constants values matches the value of
  3791. the expression, the statement that follows this constant is executed. After that,
  3792. the program continues after the final end. If none of the case constants match the
  3793. expression value, the statement after the else keyword is executed. This can be
  3794. an empty statement. If no else part is present, and no case constant matches the
  3795. expression value, program flow continues after the final end. The case statements
  3796. can be compound statements (i.e. a begin..End block).
  3797. Remark: Contrary to Turbo Pascal, duplicate case labels are not allowed in Free
  3798. Pascal, so the following code will generate an error when compiling:
  3799.  
  3800. Var i : integer;
  3801. ...
  3802. Case i of
  3803.  3 : DoSomething;
  3804.  1..5 : DoSomethingElse;
  3805. end;
  3806.  
  3807. The compiler will generate a Duplicate case label error when compiling this,
  3808. because the 3 also appears (implicitly) in the range 1..5. This is similar to Delhpi
  3809. syntax. The following are valid case statements:
  3810.  
  3811. Case C of
  3812.  'a' : WriteLn ('A pressed');
  3813.  'b' : WriteLn ('B pressed');
  3814.  'c' : WriteLn ('C pressed');
  3815. else
  3816.   WriteLn ('unknown letter pressed : ',C);
  3817. end;
  3818.  
  3819. Or
  3820.  
  3821. Case C of
  3822.  'a','e','i','o','u' : WriteLn ('vowel pressed');
  3823.  'y' : WriteLn ('This one depends on the language');
  3824. else
  3825.   WriteLn ('Consonant pressed');
  3826. end;
  3827.  
  3828. Case Number of
  3829.  1..10       : WriteLn ('Small number');
  3830.  11..100 : WriteLn ('Normal, medium number');
  3831. else
  3832.  WriteLn ('HUGE number');
  3833. end;
  3834.  
  3835.  
  3836.  
  3837.                                         66
  3838.  
  3839.  
  3840.  
  3841.                                               7.2. STRUCTURED STATEMENTS
  3842.  
  3843.  
  3844. The If..then..else statement
  3845. The If .. then .. else.. prototype syntax is
  3846.  
  3847.         If then statements
  3848.  
  3849.      -
  3850.         - if statement if expression then statement                          -
  3851.                                                            else statement
  3852.      -                                                                       - 
  3853.  
  3854.  
  3855. The expression between the if and then keywords must have a boolean return type.
  3856. If the expression evaluates to True then the statement following then is executed.
  3857. If the expression evaluates to False, then the statement following else is executed,
  3858. if it is present.
  3859. Be aware of the fact that the boolean expression will be short-cut evaluated. (Mean-
  3860. ing that the evaluation will be stopped at the point where the outcome is known
  3861. with certainty) Also, before the else keyword, no semicolon (;) is allowed, but
  3862. all statements can be compound statements. In nested If.. then .. else con-
  3863. structs, some ambiguity may araise as to which else statement pairs with which
  3864. if statement. The rule is that the else keyword matches the first if keyword not
  3865. already matched by an else keyword. For example:
  3866.  
  3867. If exp1 Then
  3868.   If exp2 then
  3869.         Stat1
  3870. else
  3871.   stat2;
  3872.  
  3873. Despite it's appearance, the statement is syntactically equivalent to
  3874.  
  3875. If exp1 Then
  3876.     begin
  3877.     If exp2 then
  3878.            Stat1
  3879.     elsestat2
  3880.     end;
  3881.  
  3882. and not to
  3883.  
  3884. { NOT EQUIVALENT }
  3885. If exp1 Then
  3886.     begin
  3887.     If exp2 then
  3888.            Stat1
  3889.     end
  3890. elsestat2
  3891. If it is this latter construct you want, you must explicitly put the begin and end
  3892. keywords. When in doubt, add them, they don't hurt.
  3893. The following is a valid statement:
  3894.  
  3895.                                         67
  3896.  
  3897.  
  3898.  
  3899.                                                    7.2. STRUCTURED STATEMENTS
  3900.  
  3901.  
  3902. If Today in [Monday..Friday] then
  3903.   WriteLn ('Must work harder')
  3904. else
  3905.   WriteLn ('Take a day off.');
  3906.  
  3907.  
  3908. The For..to/downto..do statement
  3909. Free Pascal supports the For loop construction. A for loop is used in case one
  3910. wants to calculated something a fixed number of times. The prototype syntax is as
  3911. follows:
  3912.  
  3913.         For statement
  3914.  
  3915.     -
  3916.         - for statement for control variable := initial value         to      -
  3917.                                                                     downto
  3918.     -         final value do statement                                        - 
  3919.     -
  3920.         - control variable variable identifier                                - 
  3921.     -
  3922.         - initial value expression                                            - 
  3923.     -
  3924.         - final value expression                                              - 
  3925.  
  3926.  
  3927.  
  3928. Statement can be a compound statement. When this statement is encountered, the
  3929. control variable is initialized with the initial value, and is compared with the final
  3930. value. What happens next depends on whether to or downto is used:
  3931.  
  3932.    1. In the case To is used, if the initial value larger than the final value then
  3933.         Statement will never be executed.
  3934.  
  3935.    2. In the case DownTo is used, if the initial value larger than the final value then
  3936.         Statement will never be executed.
  3937.  
  3938. After this check, the statement after Do is executed. After the execution of the state-
  3939. ment, the control variable is increased or decreased with 1, depending on whether
  3940. To or Downto is used. The control variable must be an ordinal type, no other types
  3941. can be used as counters in a loop.
  3942. Remark: Contrary to ANSI pascal specifications, Free Pascal first initializes the
  3943. counter variable, and only then calculates the upper bound.
  3944. The following are valid loops:
  3945.  
  3946. For Day := Monday to Friday do Work;
  3947. For I := 100 downto 1 do
  3948.   WriteLn ('Counting down : ',i);
  3949. For I := 1 to 7*dwarfs do KissDwarf(i);
  3950.  
  3951. If the statement is a compound statement, then the Break (103) and Continue (105)
  3952. reserved words can be used to jump to the end or just after the end of the For
  3953. statement.
  3954.  
  3955.  
  3956.  
  3957.                                              68
  3958.  
  3959.  
  3960.  
  3961.                                                7.2. STRUCTURED STATEMENTS
  3962.  
  3963.  
  3964. The Repeat..until statement
  3965. The repeat statement is used to execute a statement until a certain condition is
  3966. reached. The statement will be executed at least once. The prototype syntax of
  3967. the Repeat..until statement is
  3968.  
  3969.      Repeat statement
  3970.  
  3971.     -
  3972.      - repeat statement repeat       statement     until expression      - 
  3973.                                     6     ;
  3974.  
  3975.  
  3976. This will execute the statements between repeat and until up to the moment
  3977. when Expression evaluates to True. Since the expression is evaluated after the
  3978. execution of the statements, they are executed at least once. Be aware of the fact
  3979. that the boolean expression Expression will be short-cut evaluated. (Meaning
  3980. that the evaluation will be stopped at the point where the outcome is known with
  3981. certainty) The following are valid repeat statements
  3982.  
  3983. repeat
  3984.   WriteLn ('I =',i);
  3985.   I := I+2;
  3986. until I>100;
  3987. repeat
  3988.  X := X/2
  3989. until x<10e-3
  3990.  
  3991. The Break (103) and Continue (105) reserved words can be used to jump to the end
  3992. or just after the end of the repeat .. until statement.
  3993.  
  3994.  
  3995. The While..do statement
  3996. A while statement is used to execute a statement as long as a certain condition
  3997. holds. This may imply that the statement is never executed. The prototype syntax
  3998. of the While..do statement is
  3999.  
  4000.      While statements
  4001.  
  4002.     -
  4003.      - while statement while expression do statement                     - 
  4004.  
  4005.  
  4006. This will execute Statement as long as Expression evaluates to True. Since
  4007. Expression is evaluated before the execution of Statement, it is possible that
  4008. Statement isn't executed at all. Statement can be a compound statement. Be
  4009. aware of the fact that the boolean expression Expression will be short-cut evalu-
  4010. ated. (Meaning that the evaluation will be stopped at the point where the outcome
  4011. is known with certainty) The following are valid while statements:
  4012.  
  4013. I := I+2;
  4014. while i<=100 do
  4015.   begin
  4016.  
  4017.                                          69
  4018.  
  4019.  
  4020.  
  4021.                                                      7.2. STRUCTURED STATEMENTS
  4022.  
  4023.  
  4024.   WriteLn ('I =',i);
  4025.   I := I+2;
  4026.   end;
  4027. X := X/2;
  4028. while x>=10e-3 do
  4029.   X := X/2;
  4030.  
  4031. They correspond to the example loops for the repeat statements.
  4032. If the statement is a compound statement, then the Break (103) and Continue (105)
  4033. reserved words can be used to jump to the end or just after the end of the While
  4034. statement.
  4035.  
  4036.  
  4037. The With statement
  4038. The with statement serves to access the elements of a record1 or object or class,
  4039. without having to specify the name of the each time. The syntax for a with state-
  4040. ment is
  4041.  
  4042.           With statement
  4043.  
  4044.        -
  4045.           - with statement     variable reference     do statement                   - 
  4046.                               6        ,
  4047.  
  4048.  
  4049. The variable reference must be a variable of a record, object or class type. In the
  4050. with statement, any variable reference, or method reference is checked to see if it is
  4051. a field or method of the record or object or class. If so, then that field is accessed,
  4052. or that method is called. Given the declaration:
  4053.  
  4054. Type Passenger = Record
  4055.             Name : String[30];
  4056.             Flight : String[10];
  4057.             end;
  4058. Var TheCustomer : Passenger;
  4059.  
  4060. The following statements are completely equivalent:
  4061.  
  4062. TheCustomer.Name := 'Michael';
  4063. TheCustomer.Flight := 'PS901';
  4064.  
  4065. and
  4066.  
  4067. With TheCustomer do
  4068.   begin
  4069.   Name := 'Michael';
  4070.   Flight := 'PS901';
  4071.   end;
  4072.  
  4073. The statement
  4074.    1 The with statement does not work correctly when used with objects or classes until version
  4075. 0.99.6
  4076.  
  4077.  
  4078.                                               70
  4079.  
  4080.  
  4081.  
  4082.                                                            7.3. ASSEMBLER STATEMENTS
  4083.  
  4084.  
  4085. With A,B,C,D do Statement;
  4086.  
  4087. is equivalent to
  4088.  
  4089. With A do
  4090.  With B do
  4091.   With C do
  4092.        With D do Statement;
  4093.  
  4094. This also is a clear example of the fact that the variables are tried last to first, i.e.,
  4095. when the compiler encounters a variable reference, it will first check if it is a field
  4096. or method of the last variable. If not, then it will check the last-but-one, and so on.
  4097. The following example shows this;
  4098.  
  4099. Program testw;
  4100. Type AR = record
  4101.             X,Y : Longint;
  4102.          end;
  4103.  
  4104. Var S,T : Ar;
  4105. begin
  4106.   S.X := 1;S.Y := 1;
  4107.   T.X := 2;T.Y := 2;
  4108.   With S,T do
  4109.         WriteLn (X,' ',Y);
  4110. end.
  4111.  
  4112. The output of this program is
  4113.  
  4114. 2 2
  4115.  
  4116. Showing thus that the X,Y in the WriteLn statement match the T record variable.
  4117.  
  4118.  
  4119. Exception Statements
  4120. As of version 0.99.7, Free Pascal supports exceptions. Exceptions provide a conve-
  4121. nient way to program error and error-recovery mechanisms, and are closely related
  4122. to classes. Exception support is explained in chapter 10, page 90
  4123.  
  4124.  
  4125. 7.3 Assembler statements
  4126.  
  4127. An assembler statement allows you to insert assembler code right in your pascal
  4128. code.
  4129.  
  4130.          Assembler statements
  4131.  
  4132.        -
  4133.         - asm statement asm assembler code end                                  - 
  4134.                                                                 registerlist
  4135.  
  4136.        -
  4137.         - registerlist [      stringconstant          ]                         - 
  4138.                               6     ,
  4139.  
  4140.  
  4141.                                                 71
  4142.  
  4143.  
  4144.  
  4145.                                                7.3. ASSEMBLER STATEMENTS
  4146.  
  4147.  
  4148.  
  4149.  
  4150. More information about assembler blocks can be found in the Programmers' guide.
  4151. The register list is used to indicate the registers that are modified by an assembler
  4152. statement in your code. The compiler stores certain results in the registers. If you
  4153. modify the registers in an assembler statement, the compiler should, sometimes,
  4154. be told about it. The registers are denoted with their Intel names for the I386
  4155. processor, i.e., 'EAX', 'ESI' etc... As an example, consider the following assembler
  4156. code:
  4157.  
  4158. asmMovl $1,%ebx
  4159.   Movl $0,%eax
  4160.   addl %eax,%ebx
  4161. end; ['EAX','EBX'];
  4162.  
  4163. This will tell the compiler that it should save and restore the contents of the EAX
  4164. and EBX registers when it encounters this asm statement.
  4165.  
  4166.  
  4167.  
  4168.  
  4169.  
  4170.  
  4171.  
  4172.  
  4173.  
  4174.  
  4175.  
  4176.  
  4177.  
  4178.  
  4179.  
  4180.  
  4181.  
  4182.  
  4183.  
  4184.  
  4185.  
  4186.  
  4187.  
  4188.  
  4189.  
  4190.  
  4191.  
  4192.  
  4193.  
  4194.  
  4195.  
  4196.  
  4197.  
  4198.  
  4199.  
  4200.                                          72
  4201.  
  4202.  
  4203.  
  4204. Chapter 8
  4205.  
  4206. Using functions and
  4207. procedures
  4208.  
  4209. Free Pascal supports the use of functions and procedures, but with some extras:
  4210. Function overloading is supported, as well as Const parameters and open arrays.
  4211. Remark: In many of the subsequent paragraphs the words procedure and function
  4212. will be used interchangeably. The statements made are valid for both, except when
  4213. indicated otherwise.
  4214.  
  4215.  
  4216. 8.1 Procedure declaration
  4217.  
  4218. A procedure declaration defines an identifier and associates it with a block of code.
  4219. The procedure can then be called with a procedure statement.
  4220.  
  4221.      Procedure declaration
  4222.  
  4223.     -
  4224.      - procedure declaration procedure header ; subroutine block ;                    - 
  4225.     -
  4226.      - procedure header procedure                          identifier            -
  4227.                                                   qualified method identifier
  4228.     -      formal parameter list                                                      - 
  4229.                                      modifiers
  4230.  
  4231.     -
  4232.      - subroutine block               block                                           - 
  4233.                                external directive
  4234.                                     asm block
  4235.                                     forward
  4236.  
  4237.  
  4238.  
  4239. See section 8.3, page 74 for the list of parameters. A procedure declaration that
  4240. is followed by a block implements the action of the procedure in that block. The
  4241. following is a valid procedure :
  4242.  
  4243. Procedure DoSomething (Para : String);
  4244. begin
  4245.   Writeln ('Got parameter : ',Para);
  4246.  
  4247.  
  4248.                                                73
  4249.  
  4250.  
  4251.  
  4252.                                                             8.2. FUNCTION DECLARATION
  4253.  
  4254.  
  4255.   Writeln ('Parameter in upper case : ',Upper(Para));
  4256. end;
  4257.  
  4258. Note that it is possible that a procedure calls itself.
  4259.  
  4260.  
  4261. 8.2 Function declaration
  4262.  
  4263. A function declaration defines an identifier and associates it with a block of code.
  4264. The block of code will return a result. The function can then be called inside an
  4265. expression, or with a procedure statement, if extended syntax is on.
  4266.  
  4267.         Function declaration
  4268.  
  4269.     -
  4270.         - function declaration function header ; subroutine block ;                - 
  4271.     -
  4272.         - function header function                     identifier             -
  4273.                                              qualified method identifier
  4274.     -        formal parameter list : result type                                   - 
  4275.                                                             modifiers
  4276.  
  4277.     -
  4278.         - subroutine block             block                                       - 
  4279.                                  external directive
  4280.                                     asm block
  4281.                                      forward
  4282.  
  4283.  
  4284.  
  4285. The result type of a function can be any previously declared type. contrary to
  4286. Turbo pascal, where only simple types could be returned.
  4287.  
  4288.  
  4289. 8.3 Parameter lists
  4290.  
  4291. When you need to pass arguments to a function or procedure, these parameters
  4292. must be declared in the formal parameter list of that function or procedure. The
  4293. parameter list is a declaration of identifiers that can be referred to only in that
  4294. procedure or function's block.
  4295.  
  4296.         Parameters
  4297.  
  4298.     -
  4299.         - formal parameter list (        parameter declaration           )         - 
  4300.                                         6              ;
  4301.  
  4302.     -
  4303.         - parameter declaration         value parameter                            - 
  4304.                                        variable parameter
  4305.                                       constant parameter
  4306.  
  4307.  
  4308.  
  4309. Constant parameters and variable parameters can also be untyped parameters if
  4310. they have no type identifier.
  4311.  
  4312.  
  4313.  
  4314.                                                 74
  4315.  
  4316.  
  4317.  
  4318.                                                                8.3. PARAMETER LISTS
  4319.  
  4320.  
  4321. Value parameters
  4322. Value parameters are declared as follows:
  4323.  
  4324.       Value parameters
  4325.  
  4326.     -
  4327.      - value parameter identifier list :                         parameter type - 
  4328.                                                    array of
  4329.  
  4330.  
  4331. When you declare parameters as value parameters, the procedure gets a copy of the
  4332. parameters that the calling block passes. Any modifications to these parameters
  4333. are purely local to the procedure's block, and do not propagate back to the calling
  4334. block. A block that wishes to call a procedure with value parameters must pass
  4335. assignment compatible parameters to the procedure. This means that the types
  4336. should not match exactly, but can be converted (conversion code is inserted by the
  4337. compiler itself)
  4338. Take care that using value parameters makes heavy use of the stack, especially if
  4339. you pass large parameters. The total size of all parameters in the formal parameter
  4340. list should be below 32K for portability's sake (the Intel version limits this to 64K).
  4341. You can pass open arrays as value parameters. See section 8.3, page 76 for more
  4342. information on using open arrays.
  4343.  
  4344.  
  4345. Variable parameters
  4346. Variable parameters are declared as follows:
  4347.  
  4348.       Variable parameters
  4349.  
  4350.     -
  4351.      - variable parameter var identifier list                                            -
  4352.                                                      :                 parameter type
  4353.                                                           array of
  4354.     -                                                                           - 
  4355.  
  4356.  
  4357. When you declare parameters as variable parameters, the procedure or function
  4358. accesses immediatly the variable that the calling block passed in its parameter list.
  4359. The procedure gets a pointer to the variable that was passed, and uses this pointer
  4360. to access the variable's value. From this, it follows that any changes that you make
  4361. to the parameter, will proagate back to the calling block. This mechanism can be
  4362. used to pass values back in procedures. Because of this, the calling block must pass
  4363. a parameter of exactly the same type as the declared parameter's type. If it does
  4364. not, the compiler will generate an error.
  4365. Variable parameters can be untyped. In that case the variable has no type, and
  4366. hence is incompatible with all other types. However, you can use the address
  4367. operator on it, or you can pass it to a function that has also an untyped parameter.
  4368. If you want to use an untyped parameter in an assigment, or you want to assign to
  4369. it, you must use a typecast.
  4370. File type variables must always be passed as variable parameters.
  4371. You can pass open arrays as variable parameters. See section 8.3, page 76 for more
  4372. information on using open arrays.
  4373.  
  4374.                                              75
  4375.  
  4376.  
  4377.  
  4378.                                                          8.3. PARAMETER LISTS
  4379.  
  4380.  
  4381. Constant parameters
  4382. In addition to variable parameters and value parameters Free Pascal also supports
  4383. Constant parameters. You can specify a constant parameter as follows:
  4384.  
  4385.       Constant parameters
  4386.  
  4387.     -
  4388.      - constant parameter const identifier list -
  4389.     -                                                                        - 
  4390.              :                parameter type
  4391.                   array of
  4392.  
  4393.  
  4394. A constant argument is passed by reference if it's size is larger than a longint. It
  4395. is passed by value if the size equals 4 or less. This means that the function or
  4396. procedure receives a pointer to the passed argument, but you are not allowed to
  4397. assign to it, this will result in a compiler error. Likewise, you cannot pass a const
  4398. parameter on to another function that requires a variable parameter. The main use
  4399. for this is reducing the stack size, hence improving performance, and still retaining
  4400. the semantics of passing by value...
  4401. Constant parameters can also be untyped. See section 8.3, page 75 for more infor-
  4402. mation about untyped parameters.
  4403. You can pass open arrays as constant parameters. See section 8.3, page 76 for more
  4404. information on using open arrays.
  4405.  
  4406.  
  4407. Open array parameters
  4408. Free Pascal supports the passing of open arrays, i.e. you can declare a procedure
  4409. with an array of unspecified length as a parameter, as in Delphi. Open array
  4410. parameters can be accessed in the procedure or function as an array that is declared
  4411. with starting index 0, and last element index High(paremeter). For example, the
  4412. parameter
  4413.  
  4414. Row : Array of Integer;
  4415.  
  4416. would be equivalent to
  4417.  
  4418. Row : Array[0..N-1] of Integer;
  4419.  
  4420. Where N would be the actual size of the array that is passed to the function. N-1 can
  4421. be calculated as High(Row). Open parameters can be passed by value, by reference
  4422. or as a constant parameter. In the latter cases the procedure receives a pointer to
  4423. the actual array. In the former case, it receives a copy of the array. In a function or
  4424. procedure, you can pass open arrays only to functions which are also declared with
  4425. open arrays as parameters, not to functions or procedures which accept arrays of
  4426. fixed length. The following is an example of a function using an open array:
  4427.  
  4428. Function Average (Row : Array of integer) : Real;
  4429. Var I : longint;
  4430.      Temp : Real;
  4431. begin
  4432.   Temp := Row[0];
  4433.  
  4434.                                           76
  4435.  
  4436.  
  4437.  
  4438.                                                 8.4. FUNCTION OVERLOADING
  4439.  
  4440.  
  4441.   For I := 1 to High(Row) do
  4442.         Temp := Temp + Row[i];
  4443.   Average := Temp / (High(Row)+1);
  4444. end;
  4445.  
  4446.  
  4447. 8.4 Function overloading
  4448.  
  4449. Function overloading simply means that you can define the same function more
  4450. than once, but each time with a di erent formal parameter list. The parameter
  4451. lists must di er at least in one of it's elements type. When the compiler encounters
  4452. a function call, it will look at the function parameters to decide which one of the
  4453. defined functions it should call. This can be useful if you want to define the same
  4454. function for di erent types. For example, in the RTL, the Dec procedure is is defined
  4455. as:
  4456.  
  4457. ...
  4458. Dec(Var I : Longint;decrement : Longint);
  4459. Dec(Var I : Longint);
  4460. Dec(Var I : Byte;decrement : Longint);
  4461. Dec(Var I : Byte);
  4462. ...
  4463.  
  4464. When the compiler encounters a call to the dec function, it will first search which
  4465. function it should use. It therefore checks the parameters in your function call,
  4466. and looks if there is a function definition which matches the specified parameter
  4467. list. If the compiler finds such a function, a call is inserted to that function. If no
  4468. such function is found, a compiler error is generated. You cannot have overloaded
  4469. functions that have a cdecl or export modifier (Technically, because these two
  4470. modifiers prevent the mangling of the function name by the compiler).
  4471.  
  4472.  
  4473. 8.5 Forward defined functions
  4474.  
  4475. You can define a function without having it followed by it's implementation, by
  4476. having it followed by the forward procedure. The e ective implementation of that
  4477. function must follow later in the module. The function can be used after a forward
  4478. declaration as if it had been implemented already. The following is an example of
  4479. a forward declaration.
  4480.  
  4481. Program testforward;
  4482. Procedure First (n : longint); forward;
  4483. Procedure Second;
  4484. begin
  4485.   WriteLn ('In second. Calling first...');
  4486.   First (1);
  4487. end;
  4488. Procedure First (n : longint);
  4489. begin
  4490.   WriteLn ('First received : ',n);
  4491. end;
  4492. begin
  4493.   Second;
  4494. end.
  4495.  
  4496.                                           77
  4497.  
  4498.  
  4499.  
  4500.                                                        8.6. EXTERNAL FUNCTIONS
  4501.  
  4502.  
  4503. You cannot define a function twice as forward (nor is there any reason why you
  4504. would want to do that). Likewise, in units, you cannot have a forward declared
  4505. function of a function that has been declared in the interface part. The interface
  4506. declaration counts as a forward declaration. The following unit will give an error
  4507. when compiled:
  4508.  
  4509. Unit testforward;
  4510. interface
  4511. Procedure First (n : longint);
  4512. Procedure Second;
  4513. implementation
  4514. Procedure First (n : longint); forward;
  4515. Procedure Second;
  4516. begin
  4517.   WriteLn ('In second. Calling first...');
  4518.   First (1);
  4519. end;
  4520. Procedure First (n : longint);
  4521. begin
  4522.   WriteLn ('First received : ',n);
  4523. end;
  4524. end.
  4525.  
  4526.  
  4527. 8.6 External functions
  4528.  
  4529. The external modifier can be used to declare a function that resides in an external
  4530. object file. It allows you to use the function in your code, and at linking time, you
  4531. must link the object file containing the implementation of the function or procedure.
  4532.  
  4533.         External directive
  4534.  
  4535.     -
  4536.         - external directive external                                                 -
  4537.                                          string constant    name string constant
  4538.                                                             index integer constant
  4539.     -                                                                          - 
  4540.  
  4541.  
  4542.  
  4543. It replaces, in e ect, the function or procedure code block. As such, it can be
  4544. present only in an implementation block of a unit, or in a program. As an example:
  4545.  
  4546. program CmodDemo;
  4547. {$Linklib c}
  4548. Const P : PChar = 'This is fun !';
  4549. Function strlen (P : PChar) : Longint; cdecl; external;
  4550. begin
  4551.   WriteLn ('Length of (',p,') : ',strlen(p))
  4552. end.
  4553.  
  4554. Remark The parameters in our declaration of the external function should match
  4555. exactly the ones in the declaration in the object file. If the external modifier is
  4556. followed by a string constant:
  4557.  
  4558.                                             78
  4559.  
  4560.  
  4561.  
  4562.                                                          8.7. ASSEMBLER FUNCTIONS
  4563.  
  4564.  
  4565. external 'lname';
  4566.  
  4567. Then this tells the compiler that the function resides in library 'lname'. The com-
  4568. piler will then automatically link this library to your program.
  4569. You can also specify the name that the function has in the library:
  4570.  
  4571. external 'lname' name Fname;
  4572.  
  4573. This tells the compiler that the function resides in library 'lname', but with name
  4574. 'Fname'. The compiler will then automatically link this library to your program,
  4575. and use the correct name for the function. Under Windows and os/2, you can
  4576. also use the following form:
  4577.  
  4578. external 'lname' Index Ind;
  4579.  
  4580. This tells the compiler that the function resides in library 'lname', but with index
  4581. Ind. The compiler will then automatically link this library to your program, and
  4582. use the correct index for the function.
  4583.  
  4584.  
  4585. 8.7 Assembler functions
  4586.  
  4587. Functions and procedures can be completely implemented in assembly language.
  4588. To indicate this, you use the assembler keyword:
  4589.  
  4590.       Assembler functions
  4591.  
  4592.     -
  4593.      - asm block assembler ; declaration part asm statement                - 
  4594.  
  4595.  
  4596. Contrary to Delphi, the assembler keyword must be present to indicate an assembler
  4597. function. For more information about assembler functions, see the chapter on using
  4598. assembler in the Programmers' guide.
  4599.  
  4600.  
  4601. 8.8 Modifiers
  4602.  
  4603. A function or procedure declaration can contain modifiers. Here we list the various
  4604. possibilities:
  4605.  
  4606.       Modifiers
  4607.  
  4608.     -
  4609.      - modifiers ;                       public                            - 
  4610.                      6 alias : string constant
  4611.                                     interrupt
  4612.                                   call modifiers
  4613.  
  4614.     -
  4615.      - call modifiers      register                                        - 
  4616.                            pascal
  4617.                                 cdecl
  4618.                            stdcall
  4619.                           popstack
  4620.  
  4621.                                                    79
  4622.  
  4623.  
  4624.  
  4625.                                                                   8.8. MODIFIERS
  4626.  
  4627.  
  4628.  
  4629.  
  4630. Free Pascal doesn't support all Turbo Pascal modifiers, but does support a number
  4631. of additional modifiers. They are used mainly for assembler and reference to C
  4632. object files. More on the use of modifiers can be found in the Programmers' guide.
  4633.  
  4634.  
  4635. Public
  4636. The Public keyword is used to declare a function globally in a unit. This is useful
  4637. if you don't want a function to be accessible from the unit file, but you do want the
  4638. function to be accessible from the object file. as an example:
  4639.  
  4640. Unit someunit;
  4641. interface
  4642. Function First : Real;
  4643. Implementation
  4644. Function First : Real;
  4645. begin
  4646.   First := 0;
  4647. end;
  4648. Function Second : Real; [Public];
  4649. begin
  4650.   Second := 1;
  4651. end;
  4652. end.
  4653.  
  4654. If another program or unit uses this unit, it will not be able to use the function
  4655. Second, since it isn't declared in the interface part. However, it will be possible to
  4656. access the function Second at the assembly-language level, by using it's mangled
  4657. name (see the Programmers' guide).
  4658.  
  4659.  
  4660. cdecl
  4661. The cdecl modifier can be used to declare a function that uses a C type calling
  4662. convention. This must be used if you wish to acces functions in an object file
  4663. generated by a C compiler. It allows you to use the function in your code, and at
  4664. linking time, you must link the object file containing the C implementation of the
  4665. function or procedure. As an example:
  4666.  
  4667. program CmodDemo;
  4668. {$LINKLIB c}
  4669. Const P : PChar = 'This is fun !';
  4670. Function strlen (P : PChar) : Longint; cdecl; external;
  4671. begin
  4672.   WriteLn ('Length of (',p,') : ',strlen(p))
  4673. end.
  4674.  
  4675. When compiling this, and linking to the C-library, you will be able to call the strlen
  4676. function throughout your program. The external directive tells the compiler that
  4677. the function resides in an external object filebrary (see 8.6). Remark The parameters
  4678. in our declaration of the C function should match exactly the ones in the declaration
  4679. in C. Since C is case sensitive, this means also that the name of the function must be
  4680. exactly the same. the Free Pascal compiler will use the name exactly as it is typed
  4681. in the declaration.
  4682.  
  4683.                                          80
  4684.  
  4685.  
  4686.  
  4687.                                                                              8.8. MODIFIERS
  4688.  
  4689.  
  4690. popstack
  4691. Popstack does the same as cdecl, namely it tells the Free Pascal compiler that a
  4692. function uses the C calling convention. In di erence with the cdecl modifier, it still
  4693. mangles the name of the function as it would for a normal pascal function. With
  4694. popstack you could access functions by their pascal names in a library.
  4695.  
  4696.  
  4697. Export
  4698. Sometimes you must provide a callback function for a C library, or you want your
  4699. routines to be callable from a C program. Since Free Pascal and C use di erent
  4700. calling schemes for functions and procedures1, the compiler must be told to generate
  4701. code that can be called from a C routine. This is where the Export modifier comes
  4702. in. Contrary to the other modifiers, it must be specified separately, as follows:
  4703.  
  4704. function DoSquare (X : Longint) : Longint; export;
  4705. begin
  4706. ...
  4707. end;
  4708.  
  4709. The square brackets around the modifier are not allowed in this case. Remark: as of
  4710. version 0.9.8, Free Pascal supports the Delphi cdecl modifier. This modifier works
  4711. in the same way as the export modifier. More information about these modifiers
  4712. can be found in the Programmers' guide, in the section on the calling mechanism
  4713. and the chapter on linking.
  4714.  
  4715.  
  4716. StdCall
  4717. As of version 0.9.8, Free Pascal supports the Delphi stdcall modifier. This modifier
  4718. does actually nothing, since the Free Pascal compiler by default pushes parameters
  4719. from right to left on the stack, which is what the modifier does under Delphi (which
  4720. pushes parameters on the stack from left to right). More information about this
  4721. modifier can be found in the Programmers' guide, in the section on the calling
  4722. mechanism and the chapter on linking.
  4723.  
  4724.  
  4725. Alias
  4726. The Alias modifier allows you to specify a di erent name for a procedure or func-
  4727. tion. This is mostly useful for referring to this procedure from assembly language
  4728. constructs. As an example, consider the following program:
  4729.  
  4730. Program Aliases;
  4731. Procedure Printit; [Alias : 'DOIT'];
  4732. begin
  4733.   WriteLn ('In Printit (alias : "DOIT")');
  4734. end;
  4735. begin
  4736.   asm
  4737.   call DOIT
  4738.   end;
  4739. end.
  4740.    1More techically: In C the calling procedure must clear the stack. In Free Pascal, the subroutine
  4741. clears the stack.
  4742.  
  4743.  
  4744.                                                 81
  4745.  
  4746.  
  4747.  
  4748.                              8.9. UNSUPPORTED TURBO PASCAL MODIFIERS
  4749.  
  4750.  
  4751.  
  4752.                             Table 8.1: Unsupported modifiers
  4753.  
  4754.                      Modifier               Why not supported ?
  4755.                      Near         Free Pascal is a 32-bit compiler.
  4756.                      Far          Free Pascal is a 32-bit compiler.
  4757.  
  4758.  
  4759. Remark: the specified alias is inserted straight into the assembly code, thus it is
  4760. case sensitive. The Alias modifier, combined with the Public modifier, make a
  4761. powerful tool for making externally accessible object files.
  4762.  
  4763.  
  4764. 8.9 Unsupported Turbo Pascal modifiers
  4765.  
  4766. The modifiers that exist in Turbo pascal, but aren't supported by Free Pascal, are
  4767. listed in table (8.1).
  4768.  
  4769.  
  4770.  
  4771.  
  4772.  
  4773.  
  4774.  
  4775.  
  4776.  
  4777.  
  4778.  
  4779.  
  4780.  
  4781.  
  4782.  
  4783.  
  4784.  
  4785.  
  4786.  
  4787.  
  4788.  
  4789.  
  4790.  
  4791.  
  4792.  
  4793.  
  4794.  
  4795.  
  4796.  
  4797.  
  4798.  
  4799.  
  4800.  
  4801.  
  4802.  
  4803.                                            82
  4804.  
  4805.  
  4806.  
  4807. Chapter 9
  4808.  
  4809. Programs, units, blocks
  4810.  
  4811. A Pascal program consists of modules called units. A unit can be used to group
  4812. pieces of code together, or to give someone code without giving the sources. Both
  4813. programs and units consist of code blocks, which are mixtures of statements, pro-
  4814. cedures, and variable or type declarations.
  4815.  
  4816.  
  4817. 9.1 Programs
  4818.  
  4819. A pascal program consists of the program header, followed possibly by a 'uses'
  4820. clause, and a block.
  4821.  
  4822.       Programs
  4823.  
  4824.     -
  4825.      - program program header ;                              block .            - 
  4826.                                               uses clause
  4827.  
  4828.     -
  4829.      - program header program identifier                                        -
  4830.                                                       ( program parameters )
  4831.     -                                                                           - 
  4832.  
  4833.     -
  4834.      - program parameters identifier list                                       - 
  4835.     -
  4836.      - uses clause uses         identifier     ;                                - 
  4837.                                6 ,
  4838.  
  4839.  
  4840. The program header is provided for backwards compatibility, and is ignored by
  4841. the compiler. The uses clause serves to identify all units that are needed by the
  4842. program. The system unit doesn't have to be in this list, since it is always loaded
  4843. by the compiler. The order in which the units appear is significant, it determines
  4844. in which order they are initialized. Units are initialized in the same order as they
  4845. appear in the uses clause. Identifiers are searched in the opposite order, i.e. when
  4846. the compiler searches for an identifier, then it looks first in the last unit in the uses
  4847. clause, then the last but one, and so on. This is important in case two units declare
  4848. di erent types with the same identifier. When the compiler looks for unit files, it
  4849. adds the extension .ppu (.ppw for Win32 platforms) to the name of the unit. On
  4850. linux, unit names are converted to all lowercase when looking for a unit.
  4851.  
  4852.  
  4853.                                               83
  4854.  
  4855.  
  4856.  
  4857.                                                                                              9.2. UNITS
  4858.  
  4859.  
  4860. If a unit name is longer than 8 characters, the compiler will first look for a unit
  4861. name with this length, and then it will truncate the name to 8 characters and look
  4862. for it again. For compatibility reasons, this is also true on platforms that suport
  4863. long file names.
  4864.  
  4865.  
  4866. 9.2 Units
  4867.  
  4868. A unit contains a set of declarations, procedures and functions that can be used by
  4869. a program or another unit. The syntax for a unit is as follows:
  4870.  
  4871.       Units
  4872.  
  4873.     -
  4874.      - unit unit header interface part implementation part -
  4875.     -                                                                  end .                         - 
  4876.            initialization part         finalization part
  4877.                     begin         statement
  4878.                                   6      ;
  4879.     -
  4880.      - unit header unit unit identifier ;                                                            - 
  4881.     -
  4882.      - interface part interface                                                                      - 
  4883.                                                6 constant declaration part
  4884.                                                     type declaration part
  4885.                                                    procedure headers part
  4886.  
  4887.  
  4888.     -
  4889.      - procedure headers part                 procedure header             ;                         -
  4890.                                               function header                    call modifiers ;
  4891.     -                                                                                                - 
  4892.  
  4893.     -
  4894.      - implementation part implementation                                             -
  4895.                                                                        uses clause
  4896.     -      declaration part                                                                          - 
  4897.     -
  4898.      - initialization part initialization                 statement                                  - 
  4899.                                                         6         ;
  4900.  
  4901.     -
  4902.      - finalization part finalization               statement                                        - 
  4903.                                                    6         ;
  4904.  
  4905.  
  4906.  
  4907. The interface part declares all identifiers that must be exported from the unit. This
  4908. can be constant, type or variable identifiers, and also procedure or function identifier
  4909. declarations. Declarations inside the implementation part are not accessible outside
  4910. the unit. The implementation must contain a function declaration for each function
  4911. or procedure that is declared in the interface part. If a function is declared in the
  4912. interface part, but no declaration of that function is present in the implementation
  4913. part, then the compiler will give an error.
  4914. When a program uses a unit (say unitA) and this units uses a second unit, say unitB,
  4915. then the program depends indirectly also on unitB. This means that the compiler
  4916. must have access to unitB when trying to compile the program. If the unit is not
  4917. present at compile time, an error occurs.
  4918.  
  4919.  
  4920.                                                     84
  4921.  
  4922.  
  4923.  
  4924.                                                                         9.3. BLOCKS
  4925.  
  4926.  
  4927. Note that the identifiers from a unit on which a program depends indirectly, are
  4928. not accessible to the program. To have access to the identifiers of a unit, you must
  4929. put that unit in the uses clause of the program or unit where you want to yuse the
  4930. identifier.
  4931. Units can be mutually dependent, that is, they can reference each other in their
  4932. uses clauses. This is allowed, on the condition that at least one of the references
  4933. is in the implementation section of the unit. This also holds for indirect mutually
  4934. dependent units.
  4935. If it is possible to start from one interface uses clause of a unit, and to return there
  4936. via uses clauses of interfaces only, then there is circular unit dependence, and the
  4937. compiler will generate an error. As and example : the following is not allowed:
  4938.  
  4939. Unit UnitA;
  4940. interface
  4941. Uses UnitB;
  4942. implementation
  4943. end.
  4944.  
  4945. Unit UnitB
  4946. interface
  4947. Uses UnitA;
  4948. implementation
  4949. end.
  4950.  
  4951. But this is allowed :
  4952.  
  4953. Unit UnitA;
  4954. interface
  4955. Uses UnitB;
  4956. implementation
  4957. end.
  4958. Unit UnitB
  4959. implementation
  4960. Uses UnitA;
  4961. end.
  4962.  
  4963. Because UnitB uses UnitA only in it's implentation section. In general, it is a bad
  4964. idea to have circular unit dependencies, even if it is only in implementation sections.
  4965.  
  4966.  
  4967. 9.3 Blocks
  4968.  
  4969. Units and programs are made of blocks. A block is made of declarations of labels,
  4970. constants, types variables and functions or procedures. Blocks can be nested in
  4971. certain ways, i.e., a procedure or function declaration can have blocks in themselves.
  4972. A block looks like the following:
  4973.  
  4974.         Blocks
  4975.  
  4976.      -
  4977.         - block declaration part statement part                               - 
  4978.  
  4979.  
  4980.  
  4981.                                           85
  4982.  
  4983.  
  4984.  
  4985.                                                                                      9.4. SCOPE
  4986.  
  4987.  
  4988.     -
  4989.      - declaration part                                                                 - 
  4990.                             6           label declaration part
  4991.                                       constant declaration part
  4992.                                         type declaration part
  4993.                                       variable declaration part
  4994.                                  procedure/function declaration part
  4995.  
  4996.  
  4997.     -
  4998.      - label declaration part label         label         ;                             - 
  4999.                                            6 ,
  5000.     -
  5001.      - constant declaration part const                     constant declaration         - 
  5002.                                                      6 typed constant declaration
  5003.  
  5004.     -
  5005.      - type declaration part type          type declaration                             - 
  5006.                                           6
  5007.  
  5008.     -
  5009.      - variable declaration part var           variable declaration                     - 
  5010.                                             6
  5011.  
  5012.     -
  5013.      - procedure/function declaration part                procedure declaration         - 
  5014.                                                       6 function declaration
  5015.                                                          constructor declaration
  5016.                                                           destructor declaration
  5017.  
  5018.  
  5019.     -
  5020.      - statement part compound statement                                                - 
  5021.  
  5022.  
  5023.  
  5024. Labels that can be used to identify statements in a block are declared in the label
  5025. declaration part of that block. Each label can only identify one statement. Con-
  5026. stants that are to be used only in one block should be declared in that block's
  5027. constant declaration part. Variables that are to be used only in one block should be
  5028. declared in that block's constant declaration part. Types that are to be used only
  5029. in one block should be declared in that block's constant declaration part. Lastly,
  5030. functions and procedures that will be used in that block can be declared in the
  5031. procedure/function declaration part. After the di erent declaration parts comes
  5032. the statement part. This contains any actions that the block should execute. All
  5033. identifiers declared before the statement part can be used in that statement part.
  5034.  
  5035.  
  5036. 9.4 Scope
  5037.  
  5038. Identifiers are valid from the point of their declaration until the end of the block
  5039. in which the declaration occurred. The range where the identifier is known is the
  5040. scope of the identifier. The exact scope of an identifier depends on the way it was
  5041. defined.
  5042.  
  5043.  
  5044. Block scope
  5045. The scope of a variable declared in the declaration part of a block, is valid from the
  5046. point of declaration until the end of the block. If a block contains a second block, in
  5047. which the identfier is redeclared, then inside this block, the second declaration will
  5048.  
  5049.                                                86
  5050.  
  5051.  
  5052.  
  5053.                                                                           9.4. SCOPE
  5054.  
  5055.  
  5056. be valid. Upon leaving the inner block, the first declaration is valid again. Consider
  5057. the following example:
  5058.  
  5059. Program Demo;
  5060. Var X : Real;
  5061. { X is real variable }
  5062. Procedure NewDeclaration
  5063. Var X : Integer; { Redeclare X as integer}
  5064. begin
  5065.  // X := 1.234; {would give an error when trying to compile}
  5066.  X := 10; { Correct assigment}
  5067. end;
  5068. { From here on, X is Real again}
  5069. begin
  5070.  X := 2.468;
  5071. end.
  5072.  
  5073. In this example, inside the procedure, X denotes an integer variable. It has it's own
  5074. storage space, independent of the variable X outside the procedure.
  5075.  
  5076.  
  5077. Record scope
  5078. The field identifiers inside a record definition are valid in the following places:
  5079.  
  5080.   1. to the end of the record definition.
  5081.  
  5082.   2. field designators of a variable of the given record type.
  5083.  
  5084.   3. identifiers inside a With statement that operates on a variable of the given
  5085.         record type.
  5086.  
  5087.  
  5088. Class scope
  5089. A component identifier is valid in the following places:
  5090.  
  5091.   1. From the point of declaration to the end of the class definition.
  5092.  
  5093.   2. In all descendent types of this class.
  5094.  
  5095.   3. In all method declaration blocks of this class and descendent classes.
  5096.  
  5097.   4. In a with statement that operators on a variable of the given class's definition.
  5098.  
  5099. Note that method designators are also considered identifiers.
  5100.  
  5101.  
  5102. Unit scope
  5103. All identifiers in the interface part of a unit are valid from the point of declaration,
  5104. until the end of the unit. Furthermore, the identifiers are known in programs or
  5105. units that have the unit in their uses clause. Identifiers from indirectly dependent
  5106. units are not available. Identifiers declared in the implementation part of a unit
  5107. are valid from the point of declaration to the end of the unit. The system unit is
  5108. automatically used in all units and programs. It's identifiers are therefore always
  5109. known, in each program or unit you make. The rules of unit scope implie that you
  5110.  
  5111.                                           87
  5112.  
  5113.  
  5114.  
  5115.                                                                            9.5. LIBRARIES
  5116.  
  5117.  
  5118. can redefine an identifier of a unit. To have access to an identifier of another unit
  5119. that was redeclared in the current unit, precede it with that other units name, as
  5120. in the following example:
  5121.  
  5122. unit unitA;
  5123. interface
  5124. Type
  5125.   MyType = Real;
  5126. implementation
  5127. end.
  5128. Program prog;
  5129. Uses UnitA;
  5130.  
  5131. { Redeclaration of MyType}
  5132. Type MyType = Integer;
  5133. Var A : Mytype;                { Will be Integer }
  5134.         B : UnitA.MyType { Will be real }
  5135. begin
  5136. end.
  5137.  
  5138. This is especially useful if you redeclare the system unit's identifiers.
  5139.  
  5140.  
  5141. 9.5 Libraries
  5142.  
  5143. Free Pascal supports making of dynamic libraries (DLLs under Win32 and os/2)
  5144. trough the use of the Library keyword.
  5145. A Library is just like a unit or a program:
  5146.  
  5147.         Libraries
  5148.  
  5149.     -
  5150.         - library library header ;                         block .                - 
  5151.                                             uses clause
  5152.     -
  5153.         - library header library identifier                                       - 
  5154.  
  5155.  
  5156. By default, functions and procedures that are declared and implemented in library
  5157. are not available to a programmer that wishes to use your library.
  5158. In order to make functions or procedures available from the library, you must export
  5159. them in an export clause:
  5160.  
  5161.         Exports clause
  5162.  
  5163.     -
  5164.         - exports clause exports exports list ;                                   - 
  5165.     -
  5166.         - exports list    exports entry                                           - 
  5167.                           6       ,
  5168.     -
  5169.         - exports entry identifier                                    -
  5170.                                            index integer constant
  5171.     -                                                                             - 
  5172.              name string constant
  5173.  
  5174.                                                88
  5175.  
  5176.  
  5177.  
  5178.                                                                    9.5. LIBRARIES
  5179.  
  5180.  
  5181.  
  5182.  
  5183. Under Win32, an index clause can be added to an exports entry. an index entry
  5184. must be a positive number larger or equal than 1. It is best to use low index values,
  5185. although nothing forces you to do this.
  5186. Optionally, an exports entry can have a name specifier. If present, the name specifier
  5187. gives the exact name (case sensitive) of the function in the library.
  5188. If neither of these constructs is present, the functions or procedures are exported
  5189. with the exact names as specified in the exports clause.
  5190.  
  5191.  
  5192.  
  5193.  
  5194.  
  5195.  
  5196.  
  5197.  
  5198.  
  5199.  
  5200.  
  5201.  
  5202.  
  5203.  
  5204.  
  5205.  
  5206.  
  5207.  
  5208.  
  5209.  
  5210.  
  5211.  
  5212.  
  5213.  
  5214.  
  5215.  
  5216.  
  5217.  
  5218.  
  5219.  
  5220.  
  5221.  
  5222.  
  5223.  
  5224.  
  5225.  
  5226.  
  5227.  
  5228.  
  5229.  
  5230.  
  5231.  
  5232.                                            89
  5233.  
  5234.  
  5235.  
  5236. Chapter 10
  5237.  
  5238. Exceptions
  5239.  
  5240. As of version 0.99.7, Free Pascal supports exceptions. Exceptions provide a conve-
  5241. nient way to program error and error-recovery mechanisms, and are closely related
  5242. to classes. Exception support is based on 3 constructs:
  5243.  
  5244. Raise statements. To raise an exeption. This is usually done to signal an error
  5245.       condition.
  5246. Try ... Except blocks. These block serve to catch exceptions raised within the
  5247.       scope of the block, and to provide exception-recovery code.
  5248. Try ... Finally blocks. These block serve to force code to be executed irrespective
  5249.       of an exception occurrence or not. They generally serve to clean up memory or
  5250.       close files in case an exception occurs. The compiler generates many implicit
  5251.       Try ... Finally blocks around procedure, to force memory consistence.
  5252.  
  5253. 10.1 The raise statement
  5254.  
  5255. The raise statement is as follows:
  5256.  
  5257.       Raise statement
  5258.  
  5259.     -
  5260.      - raise statement                                                       - 
  5261.                              exception instance    at address expression
  5262.  
  5263.  
  5264. This statement will raise an exception. If it is specified, the exception instance must
  5265. be an initialized instance of a class, which is the raise type. The address exception
  5266. is optional. If itis not specified, the compiler will provide the address by itself.
  5267. If the exception instance is omitted, then the current exception is re-raised. This
  5268. construct can only be used in an exception handling block (see further).
  5269. Remark: Control never returns after an exception block. The control is transferred
  5270. to the first try...finally or try...except statement that is encountered when
  5271. unwinding the stack. If no such statement is found, the Free Pascal Run-Time
  5272. Library will generate a run-time error 217 (see also section 10.5, page 93).
  5273. As an example: The following division checks whether the denominator is zero, and
  5274. if so, raises an exception of type EDivException
  5275.  
  5276.                                            90
  5277.  
  5278.  
  5279.  
  5280.                                                    10.2. THE TRY...EXCEPT STATEMENT
  5281.  
  5282.  
  5283. Type EDivException = Class(Exception);
  5284. Function DoDiv (X,Y : Longint) : Integer;
  5285. begin
  5286.   If Y=0 then
  5287.         Raise EDivException.Create ('Division by Zero would occur');
  5288.   Result := X Div Y;
  5289. end;
  5290.  
  5291. The class Exception is defined in the Sysutils unit of the rtl. (section 10.5, page
  5292. 93)
  5293.  
  5294.  
  5295. 10.2 The try...except statement
  5296.  
  5297. A try...except exception handling block is of the following form :
  5298.  
  5299.         Try..except statement
  5300.  
  5301.        -
  5302.         - try statement try statement list except exceptionhandlers end - 
  5303.        -
  5304.         - statement list       statement                                                - 
  5305.                                6    ;
  5306.  
  5307.        -
  5308.         - exceptionhandlers                                                             - 
  5309.                                     exception handler
  5310.                                     6         ;                  else statement list
  5311.                                                          statement list
  5312.  
  5313.        -
  5314.         - exception handler on                               class type identifier do statement - 
  5315.                                          identifier :
  5316.  
  5317.  
  5318.  
  5319. If no exception is raised during the execution of the statement list, then all
  5320. statements in the list will be executed sequentially, and the except block will be
  5321. skipped, transferring program flow to the statement after the final end.
  5322. If an exception occurs during the execution of the statement list, the program
  5323. flow will be transferred to the except block. Statements in the statement list between
  5324. the place where the exception was raised and the exception block are ignored.
  5325. In the exception handling block, the type of the exception is checked, and if there
  5326. is an exception handler where the class type matches the exception object type,
  5327. or is a parent type of the exception object type, then the statement following the
  5328. corresponding Do will be executed. The first matching type is used. After the Do
  5329. block was executed, the program continues after the End statement.
  5330. The identifier in an exception handling statement is optional, and declares an ex-
  5331. ception object. It can be used to manipulate the exception object in the exception
  5332. handling code. The scope of this declaration is the statement block foillowing the
  5333. Do keyword.
  5334. If none of the On handlers matches the exception object type, then the statement list
  5335. after else is executed. If no such list is found, then the exception is automatically
  5336. re-raised. This process allows to nest try...except blocks.
  5337.  
  5338.  
  5339.  
  5340.                                                    91
  5341.  
  5342.  
  5343.  
  5344.                                         10.3. THE TRY...FINALLY STATEMENT
  5345.  
  5346.  
  5347. If, on the other hand, the exception was caught, then the exception object is de-
  5348. stroyed at the end of the exception handling block, before program flow continues.
  5349. The exception is destroyed through a call to the object's Destroy destructor.
  5350. As an example, given the previous declaration of the DoDiv function, consider the
  5351. following
  5352.  
  5353. TryZ := DoDiv (X,Y);
  5354. Except
  5355.   On EDivException do Z := 0;
  5356. end;
  5357.  
  5358. If Y happens to be zero, then the DoDiv function code will raise an exception.
  5359. When this happens, program flow is transferred to the except statement, where the
  5360. Exception handler will set the value of Z to zero. If no exception is raised, then
  5361. program flow continues past the last end statement. To allow error recovery, the
  5362. Try ... Finally block is supported. A Try...Finally block ensures that the
  5363. statements following the Finally keyword are guaranteed to be executed, even if
  5364. an exception occurs.
  5365.  
  5366.  
  5367. 10.3 The try...finally statement
  5368.  
  5369. A Try..Finally statement has the following form:
  5370.  
  5371.         Try...finally statement
  5372.  
  5373.     -
  5374.         - trystatement try statement list finally finally statements end - 
  5375.     -
  5376.         - finally statements statementlist                                  - 
  5377.  
  5378.  
  5379. If no exception occurs inside the statement List, then the program runs as if the
  5380. Try, Finally and End keywords were not present.
  5381. If, however, an exception occurs, the program flow is immediatly transferred from
  5382. the point where the excepion was raised to the first statement of the Finally
  5383. statements.
  5384. All statements after the finally keyword will be executed, and then the exception will
  5385. be automatically re-raised. Any statements between the place where the exception
  5386. was raised and the first statement of the Finally Statements are skipped.
  5387. As an example consider the following routine:
  5388.  
  5389. Procedure Doit (Name : string);
  5390. Var F : Text;
  5391. begin
  5392.   TryAssign (F,Name);
  5393.         Rewrite (name);
  5394.         ... File handling ...
  5395.   Finally
  5396.         Close(F);
  5397.   end;
  5398.  
  5399.                                               92
  5400.  
  5401.  
  5402.  
  5403.                                        10.4. EXCEPTION HANDLING NESTING
  5404.  
  5405.  
  5406. If during the execution of the file handling an execption occurs, then program flow
  5407. will continue at the close(F) statement, skipping any file operations that might
  5408. follow between the place where the exception was raised, and the Close statement.
  5409. If no exception occurred, all file operations will be executed, and the file will be
  5410. closed at the end.
  5411.  
  5412.  
  5413. 10.4 Exception handling nesting
  5414.  
  5415. It is possible to nest Try...Except blocks with Try...Finally blocks. Program
  5416. flow will be done according to a lifo (last in, first out) principle: The code of
  5417. the last encountered Try...Except or Try...Finally block will be executed first.
  5418. If the exception is not caught, or it was a finally statement, program flow will be
  5419. transferred to the last-but-one block, ad infinitum.
  5420. If an exception occurs, and there is no exception handler present, then a runerror
  5421. 217 will be generated. If you use the sysutils unit, a default handler is installed
  5422. which will show the exception object message, and the address where the exception
  5423. occurred, after which the program will exit with a Halt instruction.
  5424.  
  5425.  
  5426. 10.5 Exception classes
  5427.  
  5428. The sysutils unit contains a great deal of exception handling. It defines the following
  5429. exception types:
  5430.  
  5431.         Exception = class(TObject)
  5432.           private
  5433.             fmessage : string;
  5434.             fhelpcontext : longint;
  5435.           public
  5436.             constructor create(const msg : string);
  5437.             constructor createres(indent : longint);
  5438.             property helpcontext : longint read fhelpcontext write fhelpcontext;
  5439.             property message : string read fmessage write fmessage;
  5440.         end;
  5441.         ExceptClass = Class of Exception;
  5442.         { mathematical exceptions }
  5443.         EIntError = class(Exception);
  5444.         EDivByZero = class(EIntError);
  5445.         ERangeError = class(EIntError);
  5446.         EIntOverflow = class(EIntError);
  5447.         EMathError = class(Exception);
  5448.  
  5449. The sysutils unit also installs an exception handler. If an exception is unhandled
  5450. by any exception handling block, this handler is called by the Run-Time library.
  5451. Basically, it prints the exception address, and it prints the message of the Exception
  5452. object, and exits with a exit code of 217. If the exception object is not a descen-
  5453. dent object of the Exception object, then the class name is printed instead of the
  5454. exception message.
  5455. It is recommended to use the Exception object or a descendant class for all raise
  5456. statements, since then you can use the message field of the exception object.
  5457.  
  5458.  
  5459.  
  5460.                                           93
  5461.  
  5462.  
  5463.  
  5464. Chapter 11
  5465.  
  5466. Using assembler
  5467.  
  5468. Free Pascal supports the use of assembler in your code, but not inline assembler
  5469. macros. To have more information on the processor specific assembler syntax and
  5470. its limitations, see the Programmers' guide.
  5471.  
  5472.  
  5473. 11.1 Assembler statements
  5474.  
  5475. The following is an example of assembler inclusion in your code.
  5476.  
  5477.  ...
  5478.  Statements;
  5479.  ...
  5480.  Asmyour asm code here
  5481.    ...
  5482.  end;
  5483.  ...
  5484.  Statements;
  5485.  
  5486. The assembler instructions between the Asm and end keywords will be inserted in
  5487. the assembler generated by the compiler. You can still use conditionals in your
  5488. assembler, the compiler will recognise it, and treat it as any other conditionals.
  5489. Remark: Before version 0.99.1, Free Pascal did not support reference to variables
  5490. by their names in the assembler parts of your code.
  5491.  
  5492.  
  5493. 11.2 Assembler procedures and functions
  5494.  
  5495. Assembler procedures and functions are declared using the Assembler directive.
  5496. The Assembler keyword is supported as of version 0.9.7. This permits the code
  5497. generator to make a number of code generation optimizations.
  5498. The code generator does not generate any stack frame (entry and exit code for the
  5499. routine) if it contains no local variables and no parameters. In the case of functions,
  5500. ordinal values must be returned in the accumulator. In the case of floating point
  5501. values, these depend on the target processor and emulation options.
  5502. Remark: From version 0.99.1 to 0.99.5 (excluding FPC 0.99.5a), the Assembler
  5503. directive did not have the same e ect as in Turbo Pascal, so beware! The stack
  5504.  
  5505.                                           94
  5506.  
  5507.  
  5508.  
  5509.                          11.2. ASSEMBLER PROCEDURES AND FUNCTIONS
  5510.  
  5511.  
  5512. frame would be omitted if there were no local variables, in this case if the assembly
  5513. routine had any parameters, they would be referenced directly via the stack pointer.
  5514. This was NOT like Turbo Pascal where the stack frame is only omitted if there
  5515. are no parameters and no local variables. As stated earlier, starting from version
  5516. 0.99.5a, Free Pascal now has the same behaviour as Turbo Pascal.
  5517.  
  5518.  
  5519.  
  5520.  
  5521.  
  5522.  
  5523.  
  5524.  
  5525.  
  5526.  
  5527.  
  5528.  
  5529.  
  5530.  
  5531.  
  5532.  
  5533.  
  5534.  
  5535.  
  5536.  
  5537.  
  5538.  
  5539.  
  5540.  
  5541.  
  5542.  
  5543.  
  5544.  
  5545.  
  5546.  
  5547.  
  5548.  
  5549.  
  5550.  
  5551.  
  5552.  
  5553.  
  5554.  
  5555.  
  5556.  
  5557.  
  5558.  
  5559.  
  5560.  
  5561.  
  5562.  
  5563.  
  5564.                                          95
  5565.  
  5566.  
  5567.  
  5568.           Part II
  5569.  
  5570. Reference : The System unit
  5571.  
  5572.  
  5573.  
  5574.  
  5575.  
  5576.  
  5577.  
  5578.  
  5579.  
  5580.  
  5581.  
  5582.  
  5583.              96
  5584.  
  5585.  
  5586.  
  5587. Chapter 12
  5588.  
  5589. The system unit
  5590.  
  5591. The system unit contains the standard supported functions of Free Pascal. It is the
  5592. same for all platforms. Basically it is the same as the system unit provided with
  5593. Borland or Turbo Pascal.
  5594. Functions are listed in alphabetical order. Arguments of functions or procedures
  5595. that are optional are put between square brackets.
  5596. The pre-defined constants and variables are listed in the first section. The second
  5597. section contains the supported functions and procedures.
  5598.  
  5599.  
  5600. 12.1 Types, Constants and Variables
  5601.  
  5602. Types
  5603. The following integer types are defined in the System unit:
  5604.  
  5605. shortint = -128..127;
  5606. Longint = $80000000..$7fffffff;
  5607. integer = -32768..32767;
  5608. byte            = 0..255;
  5609. word            = 0..65535;
  5610.  
  5611. And the following pointer types:
  5612.  
  5613.   PChar = ^char;
  5614.   pPChar = ^PChar;
  5615.  
  5616. For the SetJmp (139) and LongJmp (124) calls, the following jump bufer type is
  5617. defined (for the I386 processor):
  5618.  
  5619.   jmp_buf = record
  5620.         ebx,esi,edi : Longint;
  5621.         bp,sp,pc : Pointer;
  5622.         end;
  5623.   PJmp_buf = ^jmp_buf;
  5624.  
  5625.  
  5626. Constants
  5627. The following constants for file-handling are defined in the system unit:
  5628.  
  5629.                                         97
  5630.  
  5631.  
  5632.  
  5633.                                        12.1. TYPES, CONSTANTS AND VARIABLES
  5634.  
  5635.  
  5636. Const
  5637.   fmclosed = $D7B0;
  5638.   fminput = $D7B1;
  5639.   fmoutput = $D7B2;
  5640.   fminout = $D7B3;
  5641.   fmappend = $D7B4;
  5642.   filemode : byte = 2;
  5643.  
  5644. Further, the following non processor specific general-purpose constants are also
  5645. defined:
  5646. const
  5647.    e r r o r a d d r : p o i n t e r = n i l ;
  5648.    e r r o r c o d e : word = 0;
  5649.  { max l e v e l in dumping on e r r o r }
  5650.   max frame dump : word = 20;
  5651.  Remark:      Processor specific global constants are named Testxxxx where xxxx
  5652. represents the processor number (such as Test8086, Test68000), and are used to
  5653. determine on what generation of processor the program is running on.
  5654.  
  5655.  
  5656. Variables
  5657. The following variables are defined and initialized in the system unit:
  5658.  
  5659. varoutput,input,stderr : text;
  5660.   exitproc : pointer;
  5661.   exitcode : word;
  5662.   stackbottom : Longint;
  5663.   loweststack : Longint;
  5664.  
  5665. The variables ExitProc, exitcode are used in the Free Pascal exit scheme. It works
  5666. similarly to the one in Turbo Pascal:
  5667. When a program halts (be it through the call of the Halt function or Exit or through
  5668. a run-time error), the exit mechanism checks the value of ExitProc. If this one is
  5669. non-Nil, it is set to Nil, and the procedure is called. If the exit procedure exits,
  5670. the value of ExitProc is checked again. If it is non-Nil then the above steps are
  5671. repeated. So if you want to install your exit procedure, you should save the old
  5672. value of ExitProc (may be non-Nil, since other units could have set it before you
  5673. did). In your exit procedure you then restore the value of ExitProc, such that if it
  5674. was non-Nil the exit-procedure can be called.
  5675. The ErrorAddr and ExitCode can be used to check for error-conditions. If ErrorAddr
  5676. is non-Nil, a run-time error has occurred. If so, ExitCode contains the error code.
  5677. If ErrorAddr is Nil, then ExitCode contains the argument to Halt or 0 if the
  5678. program terminated normally.
  5679. ExitCode is always passed to the operating system as the exit-code of your process.
  5680. Under GO32, the following constants are also defined :
  5681.  
  5682. const
  5683.    seg0040 = $0040;
  5684.    segA000 = $A000;
  5685.    segB000 = $B000;
  5686.    segB800 = $B800;
  5687.  
  5688.                                                   98
  5689.  
  5690.  
  5691.  
  5692.                                                           12.2. FUNCTIONS AND PROCEDURES
  5693.  
  5694.  
  5695.            These constants allow easy access to the bios/screen segment via mem/absolute.
  5696.  
  5697.  
  5698.            12.2 Functions and Procedures
  5699.  
  5700.            Abs
  5701. Declaration: Function Abs (X : Every numerical type) : Every numerical type;
  5702.  
  5703. Description: Abs returns the absolute value of a variable. The result of the function has the
  5704.            same type as its argument, which can be any numerical type.
  5705.  
  5706.      Errors: None.
  5707.  
  5708.    See also: Round (136)
  5709.  
  5710.            Program Example1 ;
  5711.  
  5712.            { Program to demonstrate the Abs f u n c t i o n . }
  5713.  
  5714.            Varr : real ;
  5715.               i : i n t e g e r ;
  5716.  
  5717.            begin
  5718.               r := abs ( - 1 . 0 ) ;       { r :=1.0 }
  5719.               i := abs (-21);              { i :=21 }
  5720.            end .
  5721.  
  5722.  
  5723.            Addr
  5724. Declaration: Function Addr (X : Any type) : Pointer;
  5725.  
  5726. Description: Addr returns a pointer to its argument, which can be any type, or a function or
  5727.            procedure name. The returned pointer isn't typed. The same result can be obtained
  5728.            by the @ operator, which can return a typed pointer (Programmers' guide).
  5729.  
  5730.      Errors: None
  5731.  
  5732.    See also: SizeOf (142)
  5733.  
  5734.            Program Example2 ;
  5735.  
  5736.            { Program to demonstrate the Addr f u n c t i o n . }
  5737.  
  5738.            Const Zero : i n t e g e r = 0;
  5739.  
  5740.            Var p : p o i n t e r ;
  5741.                     i : I n t e g e r ;
  5742.  
  5743.            begin
  5744.               p:=Addr( p ) ;               { P p o i n t s to i t s e l f }
  5745.               p:=Addr( I ) ;               { P p o i n t s to I }
  5746.               p:=Addr( Zero ) ;            { P p o i n t s to ' Zero ' }
  5747.            end .
  5748.  
  5749.  
  5750.                                                            99
  5751.  
  5752.  
  5753.  
  5754.                                                        12.2. FUNCTIONS AND PROCEDURES
  5755.  
  5756.  
  5757.           Append
  5758. Declaration: Procedure Append (Var F : Text);
  5759.  
  5760. Description: Append opens an existing file in append mode. Any data written to F will be
  5761.           appended to the file. If the file didn't exist, it will be created, contrary to the
  5762.           Turbo Pascal implementation of Append, where a file needed to exist in order to be
  5763.           opened by Append. Only text files can be opened in append mode.
  5764.  
  5765.     Errors: If the file can't be created, a run-time error will be generated.
  5766.  
  5767.   See also: Rewrite (135),Close (104), Reset (134)
  5768.  
  5769.           Program Example3 ;
  5770.  
  5771.            { Program to demonstrate the Append f u n c t i o n . }
  5772.  
  5773.           Var f : text ;
  5774.  
  5775.            begin
  5776.              Assign ( f , ' t e s t . txt ' ) ;
  5777.              Rewrite ( f ) ;                       { f i l e i s opened fo r w r i t e , and emptied }
  5778.              Writeln ( F, ' This i s the f i r s t l i n e of text . txt ' ) ;
  5779.              c l o s e ( f ) ;
  5780.              Append( f ) ;                         { f i l e i s opened f o r w r i t e , but NOT emptied .
  5781.                                                       any text w r i t t e n to i t i s appended .}
  5782.              Writeln ( f , ' This i s the second l i n e of text . txt ' ) ;
  5783.              c l o s e ( f ) ;
  5784.           end .
  5785.  
  5786.  
  5787.           Arctan
  5788. Declaration: Function Arctan (X : Real) : Real;
  5789.  
  5790. Description: Arctan returns the Arctangent of X, which can be any Real type. The resulting
  5791.           angle is in radial units.
  5792.  
  5793.     Errors: None
  5794.  
  5795.   See also: Sin (141), Cos (107)
  5796.  
  5797.           Program Example4 ;
  5798.  
  5799.            { Program to demonstrate the ArcTan f u n c t i o n . }
  5800.  
  5801.           Var R : Real ;
  5802.  
  5803.            begin
  5804.              R:=ArcTan ( 0 ) ;             { R:=0 }
  5805.              R:=ArcTan (1)/ pi ;           { R:=0.25 }
  5806.           end .
  5807.  
  5808.  
  5809.           Assign
  5810. Declaration: Procedure Assign (Var F; Name : String);
  5811.  
  5812.                                                        100
  5813.  
  5814.  
  5815.  
  5816.                                                      12.2. FUNCTIONS AND PROCEDURES
  5817.  
  5818.  
  5819. Description: Assign assigns a name to F, which can be any file type. This call doesn't open
  5820.            the file, it just assigns a name to a file variable, and marks the file as closed.
  5821.  
  5822.      Errors: None.
  5823.  
  5824.    See also: Reset (134), Rewrite (135), Append (100)
  5825.  
  5826.            Program Example5 ;
  5827.  
  5828.            { Program to demonstrate the Assign f u n c t i o n . }
  5829.  
  5830.            Var F : text ;
  5831.  
  5832.            begin
  5833.               Assign ( F, ' ' ) ;
  5834.               Rewrite ( f ) ;
  5835.               { The f o l l o w i n g can be put in any f i l e by r e d i r e c t i n g i t
  5836.                     from the command l i n e .}
  5837.               Writeln ( f , ' This goes to standard output ! ' ) ;
  5838.               Close ( f ) ;
  5839.               Assign ( F, ' Test . txt ' ) ;
  5840.               rewrite ( f ) ;
  5841.               writeln ( f , ' This doesn ' ' t go to standard output ! ' ) ;
  5842.               c l o s e ( f ) ;
  5843.            end .
  5844.  
  5845.  
  5846.            Assigned
  5847. Declaration: Function Assigned (P : Pointer) : Boolean;
  5848.  
  5849. Description: Assigned returns True if P is non-nil and retuns False of P is nil. The main use
  5850.            of Assigned is that Procedural variables, method variables and class-type variables
  5851.            also can be passed to Assigned.
  5852.  
  5853.      Errors: None
  5854.  
  5855.    See also: New (127)
  5856.  
  5857.  
  5858.            BinStr
  5859. Declaration: Function BinStr Value : longint; cnt : byte) : String;
  5860.  
  5861. Description: BinStr returns a string with the binary representation of Value. The string has
  5862.            at most cnt characters. (i.e. only the cnt rightmost bits are taken into account)
  5863.            To have a complete representation of any longint-type value, you need 32 bits, i.e.
  5864.            cnt=32
  5865.  
  5866.      Errors: None.
  5867.  
  5868.    See also: Str (144),Val (146),HexStr (118)
  5869.  
  5870.            Program example81 ;
  5871.  
  5872.            { Program to demonstrate the BinStr f u n c t i o n }
  5873.  
  5874.  
  5875.  
  5876.                                                      101
  5877.  
  5878.  
  5879.  
  5880.                                                       12.2. FUNCTIONS AND PROCEDURES
  5881.  
  5882.  
  5883.            Const Value = 45678;
  5884.  
  5885.            Var I : l o n g i n t ;
  5886.  
  5887.            begin
  5888.              For I :=8 to 20 do
  5889.                     Writeln ( BinStr ( Value , I ) : 2 0 ) ;
  5890.            end .
  5891.  
  5892.  
  5893.            Blockread
  5894. Declaration: Procedure Blockread (Var F : File; Var Buffer; Var Count : Longint [;
  5895.            var Result : Longint]);
  5896.  
  5897. Description: Blockread reads count or less records from file F. A record is a block of bytes
  5898.            with size specified by the Rewrite (135) or Reset (134) statement.
  5899.            The result is placed in Buffer, which must contain enough room for Count records.
  5900.            The function cannot read partial records. If Result is specified, it contains the
  5901.            number of records actually read. If Result isn't specified, and less than Count
  5902.            records were read, a run-time error is generated. This behavior can be controlled
  5903.            by the {$i} switch.
  5904.  
  5905.     Errors: If Result isn't specified, then a run-time error is generated if less than count
  5906.            records were read.
  5907.  
  5908.   See also: Blockwrite (103), Close (104), Reset (134), Assign (100)
  5909.  
  5910.            Program Example6 ;
  5911.  
  5912.            { Program to demonstrate the BlockRead and BlockWrite f u n c t i o n s . }
  5913.  
  5914.            Var Fin , fout : File ;
  5915.                     NumRead, NumWritten : Word ;
  5916.                     Buf : Array [ 1 . . 2 0 4 8 ] of byte ;
  5917.                     Total : Longint ;
  5918.  
  5919.            begin
  5920.               Assign ( Fin , Paramstr ( 1 ) ) ;
  5921.               Assign ( Fout , Paramstr ( 2 ) ) ;
  5922.               Reset ( Fin , 1 ) ;
  5923.               Rewrite ( Fout , 1 ) ;
  5924.               Total :=0;
  5925.              Repeat
  5926.                     BlockRead ( Fin , buf , Sizeof ( buf ) , NumRead ) ;
  5927.                     BlockWrite ( Fout , Buf , NumRead, NumWritten ) ;
  5928.                     inc ( Total , NumWritten ) ;
  5929.               Until ( NumRead=0) or ( NumWritten<>NumRead ) ;
  5930.               Write ( ' Copied ' , Total , ' bytes from f i l e ' , paramstr ( 1 ) ) ;
  5931.               Writeln ( ' to f i l e ' , paramstr ( 2 ) ) ;
  5932.               c l o s e ( f i n ) ;
  5933.               c l o s e ( fout ) ;
  5934.            end .
  5935.  
  5936.  
  5937.  
  5938.                                                       102
  5939.  
  5940.  
  5941.  
  5942.                                                     12.2. FUNCTIONS AND PROCEDURES
  5943.  
  5944.  
  5945.            Blockwrite
  5946. Declaration: Procedure Blockwrite (Var F : File; Var Buffer; Var Count : Longint);
  5947.  
  5948. Description: BlockWrite writes count records from buffer to the file F.A record is a block of
  5949.            bytes with size specified by the Rewrite (135) or Reset (134) statement.
  5950.            If the records couldn't be written to disk, a run-time error is generated. This
  5951.            behavior can be controlled by the {$i} switch.
  5952.  
  5953.      Errors: A run-time error is generated if, for some reason, the records couldn't be written
  5954.            to disk.
  5955.  
  5956.    See also: Blockread (102),Close (104), Rewrite (135), Assign (100)
  5957.  
  5958.            For the example, see Blockread (102).
  5959.  
  5960.  
  5961.            Break
  5962. Declaration: Procedure Break;
  5963.  
  5964. Description: Break jumps to the statement following the end of the current repetitive statement.
  5965.            The code between the Break call and the end of the repetitive statement is skipped.
  5966.            The condition of the repetitive statement is NOT evaluated.
  5967.            This can be used with For, varrepeat and While statements.
  5968.            Note that while this is a procedure, Break is a reserved word and hence cannot be
  5969.            redefined.
  5970.  
  5971.      Errors: None.
  5972.  
  5973.    See also: Continue (105), Exit (111)
  5974.  
  5975.            Program Example87 ;
  5976.  
  5977.            { Program to demonstrate the Break f u n c t i o n . }
  5978.  
  5979.            Var I : l o n g i n t ;
  5980.  
  5981.            begin
  5982.               I :=0;
  5983.               While I <10 Do
  5984.                  begin
  5985.                  Inc ( I ) ;
  5986.                  I f I >5 Then
  5987.                        Break ;
  5988.                  Writeln ( i ) ;
  5989.                  end ;
  5990.               I :=0;
  5991.               Repeat
  5992.                  Inc ( I ) ;
  5993.                  I f I >5 Then
  5994.                        Break ;
  5995.                  Writeln ( i ) ;
  5996.               Until I >=10;
  5997.               For I :=1 to 10 do
  5998.                  begin
  5999.  
  6000.                                                     103
  6001.  
  6002.  
  6003.  
  6004.                                                      12.2. FUNCTIONS AND PROCEDURES
  6005.  
  6006.  
  6007.                     I f I >5 Then
  6008.                       Break ;
  6009.                     Writeln ( i ) ;
  6010.                     end ;
  6011.            end .
  6012.  
  6013.  
  6014.            Chdir
  6015. Declaration: Procedure Chdir (const S : string);
  6016.  
  6017. Description: Chdir changes the working directory of the process to S.
  6018.  
  6019.      Errors: If the directory S doesn't exist, a run-time error is generated.
  6020.  
  6021.    See also: Mkdir (127), Rmdir (136)
  6022.  
  6023.            Program Example7 ;
  6024.  
  6025.            { Program to demonstrate the ChDir f u n c t i o n . }
  6026.  
  6027.            begin
  6028.               { $I -}
  6029.               ChDir ( ParamStr ( 1 ) ) ;
  6030.               i f IOresult <>0 then
  6031.                     Writeln ( ' Cannot change to d i r e c t o r y : ' , paramstr ( 1 ) ) ;
  6032.            end .
  6033.  
  6034.  
  6035.            Chr
  6036. Declaration: Function Chr (X : byte) : Char;
  6037.  
  6038. Description: Chr returns the character which has ASCII value X.
  6039.  
  6040.      Errors: None.
  6041.  
  6042.    See also: Ord (128), Str (144)
  6043.  
  6044.            Program Example8 ;
  6045.  
  6046.            { Program to demonstrate the Chr f u n c t i o n . }
  6047.  
  6048.            begin
  6049.               Write ( chr ( 1 0 ) , chr ( 1 3 ) ) ; { The same e f f e c t as Writeln ; }
  6050.            end .
  6051.  
  6052.  
  6053.            Close
  6054. Declaration: Procedure Close (Var F : Anyfiletype);
  6055.  
  6056. Description: Close flushes the bu er of the file F and closes F. After a call to Close, data can
  6057.            no longer be read from or written to F. To reopen a file closed with Close, it isn't
  6058.            necessary to assign the file again. A call to Reset (134) or Rewrite (135) is su cient.
  6059.  
  6060.      Errors: None.
  6061.  
  6062.  
  6063.                                                      104
  6064.  
  6065.  
  6066.  
  6067.                                                     12.2. FUNCTIONS AND PROCEDURES
  6068.  
  6069.  
  6070.    See also: Assign (100), Reset (134), Rewrite (135), Flush (115)
  6071.  
  6072.            Program Example9 ;
  6073.  
  6074.            { Program to demonstrate the Close f u n c t i o n . }
  6075.  
  6076.            Var F : text ;
  6077.  
  6078.            begin
  6079.              Assign ( f , ' Test . txt ' ) ;
  6080.              ReWrite ( F ) ;
  6081.              Writeln ( F, ' Some text w r i t t e n to Test . txt ' ) ;
  6082.              c l o s e ( f ) ; { Flushes contents of b u f f e r to disk ,
  6083.                                 c l o s e s the f i l e . Omitting t h i s may
  6084.                                 cause data NOT to be w r i t t e n to disk .}
  6085.            end .
  6086.  
  6087.  
  6088.            Concat
  6089. Declaration: Function Concat (S1,S2 [,S3, ... ,Sn]) : String;
  6090.  
  6091. Description: Concat concatenates the strings S1,S2 etc. to one long string. The resulting string
  6092.            is truncated at a length of 255 bytes. The same operation can be performed with
  6093.            the + operation.
  6094.  
  6095.      Errors: None.
  6096.  
  6097.    See also: Copy (106), Delete (108), Insert (120), Pos (130), Length (122)
  6098.  
  6099.            Program Example10 ;
  6100.  
  6101.            { Program to demonstrate the Concat f u n c t i o n . }
  6102.            VarS : String ;
  6103.            begin
  6104.               S:=Concat ( ' This can be done ' , ' E a s i e r ' , ' with the + o p e r a t o r ! ' ) ;
  6105.            end .
  6106.  
  6107.  
  6108.            Continue
  6109. Declaration: Procedure Continue;
  6110.  
  6111. Description: Continue jumps to the end of the current repetitive statement. The code between
  6112.            the Continue call and the end of the repetitive statement is skipped. The condition
  6113.            of the repetitive statement is then checked again.
  6114.            This can be used with For, varrepeat and While statements.
  6115.            Note that while this is a procedure, Continue is a reserved word and hence cannot
  6116.            be redefined.
  6117.  
  6118.      Errors: None.
  6119.  
  6120.    See also: Break (103), Exit (111)
  6121.  
  6122.  
  6123.                                                     105
  6124.  
  6125.  
  6126.  
  6127.                                                      12.2. FUNCTIONS AND PROCEDURES
  6128.  
  6129.  
  6130.            Program Example86 ;
  6131.  
  6132.            { Program to demonstrate the Continue f u n c t i o n . }
  6133.  
  6134.            Var I : l o n g i n t ;
  6135.  
  6136.            begin
  6137.               I :=0;
  6138.               While I <10 Do
  6139.                     begin
  6140.                     Inc ( I ) ;
  6141.                     I f I <5 Then
  6142.                        Continue ;
  6143.                     Writeln ( i ) ;
  6144.                     end ;
  6145.               I :=0;
  6146.              Repeat
  6147.                     Inc ( I ) ;
  6148.                     I f I <5 Then
  6149.                        Continue ;
  6150.                     Writeln ( i ) ;
  6151.               Until I >=10;
  6152.               For I :=1 to 10 do
  6153.                     begin
  6154.                     I f I <5 Then
  6155.                        Continue ;
  6156.                     Writeln ( i ) ;
  6157.                     end ;
  6158.            end .
  6159.  
  6160.  
  6161.            Copy
  6162. Declaration: Function Copy (Const S : String;Index : Integer;Count : Byte) : String;
  6163. Description: Copy returns a string which is a copy if the Count characters in S, starting at
  6164.            position Index. If Count is larger than the length of the string S, the result is
  6165.            truncated. If Index is larger than the length of the string S, then an empty string
  6166.            is returned.
  6167.     Errors: None.
  6168.   See also: Delete (108), Insert (120), Pos (130)
  6169.  
  6170.            Program Example11 ;
  6171.  
  6172.            { Program to demonstrate the Copy f u n c t i o n . }
  6173.  
  6174.            Var S , T : String ;
  6175.  
  6176.            begin
  6177.              T:= '1234567' ;
  6178.              S:=Copy ( T, 1 , 2 ) ;      { S:= '12 '        }
  6179.              S:=Copy ( T, 4 , 2 ) ;      { S:= '45 '        }
  6180.              S:=Copy ( T, 4 , 8 ) ;      { S:= '4567 ' }
  6181.            end .
  6182.  
  6183.                                                      106
  6184.  
  6185.  
  6186.  
  6187.                                                       12.2. FUNCTIONS AND PROCEDURES
  6188.  
  6189.  
  6190.            Cos
  6191. Declaration: Function Cos (X : Real) : Real;
  6192.  
  6193. Description: Cos returns the cosine of X, where X is an angle, in radians.
  6194.  
  6195.      Errors: None.
  6196.  
  6197.    See also: Arctan (100), Sin (141)
  6198.  
  6199.            Program Example12 ;
  6200.  
  6201.             { Program to demonstrate the Cos f u n c t i o n . }
  6202.  
  6203.            Var R : Real ;
  6204.  
  6205.             begin
  6206.               R:=Cos( Pi ) ;            { R:=-1 }
  6207.               R:=Cos( Pi / 2 ) ;        { R:=0 }
  6208.               R:=Cos ( 0 ) ;            { R:=1 }
  6209.            end .
  6210.  
  6211.  
  6212.            CSeg
  6213. Declaration: Function CSeg : Word;
  6214.  
  6215. Description: CSeg returns the Code segment register. In Free Pascal, it returns always a zero,
  6216.            since Free Pascal is a 32 bit compiler.
  6217.  
  6218.      Errors: None.
  6219.  
  6220.    See also: DSeg (109), Seg (139), Ofs (128), Ptr (131)
  6221.  
  6222.            Program Example13 ;
  6223.  
  6224.             { Program to demonstrate the CSeg f u n c t i o n . }
  6225.  
  6226.             var W : word ;
  6227.  
  6228.             begin
  6229.               W:=CSeg ; {W:=0, provided f o r c o m p a t i b i l i t y ,
  6230.                                         FPC i s 32 b i t .}
  6231.            end .
  6232.  
  6233.  
  6234.            Dec
  6235. Declaration: Procedure Dec (Var X : Any ordinal type[; Decrement : Longint]);
  6236.  
  6237. Description: Dec decreases the value of X with Decrement. If Decrement isn't specified, then 1
  6238.            is taken as a default.
  6239.  
  6240.      Errors: A range check can occur, or an underflow error, if you try to decrease X below its
  6241.            minimum value.
  6242.  
  6243.    See also: Inc (120)
  6244.  
  6245.  
  6246.                                                       107
  6247.  
  6248.  
  6249.  
  6250.                                                     12.2. FUNCTIONS AND PROCEDURES
  6251.  
  6252.  
  6253.            Program Example14 ;
  6254.  
  6255.            { Program to demonstrate the Dec f u n c t i o n . }
  6256.  
  6257.            VarI : Integer ;
  6258.              L       : Longint ;
  6259.              W : Word ;
  6260.              B       : Byte ;
  6261.               Si : S h o r t I n t ;
  6262.  
  6263.            begin
  6264.             I :=1;
  6265.             L :=2;
  6266.             W:=3;
  6267.             B:=4;
  6268.             Si :=5;
  6269.             Dec ( i ) ;          { i :=0 }
  6270.             Dec ( L , 2 ) ;      { L:=0 }
  6271.             Dec (W, 2 ) ;        { W:=1 }
  6272.             Dec ( B, - 2 ) ; { B:=6 }
  6273.             Dec ( Si , 0 ) ; { Si :=5 }
  6274.            end .
  6275.  
  6276.  
  6277.            Delete
  6278. Declaration: Procedure Delete (var S : string;Index : Integer;Count : Integer);
  6279.  
  6280. Description: Delete removes Count characters from string S, starting at position Index. All
  6281.            characters after the delected characters are shifted Count positions to the left, and
  6282.            the length of the string is adjusted.
  6283.  
  6284.     Errors: None.
  6285.  
  6286.   See also: Copy (106),Pos (130),Insert (120)
  6287.  
  6288.            Program Example15 ;
  6289.  
  6290.            { Program to demonstrate the Delete f u n c t i o n . }
  6291.  
  6292.            VarS : String ;
  6293.            begin
  6294.              S:= ' This i s not easy ! ' ;
  6295.               Delete ( S , 9 , 4 ) ; { S:= ' This i s easy ! ' }
  6296.            end .
  6297.  
  6298.  
  6299.            Dispose
  6300. Declaration: Procedure Dispose (P : pointer);
  6301.            Procedure Dispiose (P : Typed Pointer; Des : Procedure);
  6302.  
  6303.  
  6304.  
  6305.                                                     108
  6306.  
  6307.  
  6308.  
  6309.                                                       12.2. FUNCTIONS AND PROCEDURES
  6310.  
  6311.  
  6312. Description: The first form Dispose releases the memory allocated with a call to New (127).
  6313.            The pointer P must be typed. The released memory is returned to the heap.
  6314.            The second form of Dispose accepts as a first parameter a pointer to an object type,
  6315.            and as a second parameter the name of a destructor of this object. The destructor
  6316.            will be called, and the memory allocated for the object will be freed.
  6317.  
  6318.      Errors: An error will occur if the pointer doesn't point to a location in the heap.
  6319.  
  6320.    See also: New (127), Getmem (117), Freemem (116)
  6321.  
  6322.            Program Example16 ;
  6323.  
  6324.            { Program to demonstrate the Dispose and New f u n c t i o n s . }
  6325.  
  6326.            Type SS = String [ 2 0 ] ;
  6327.  
  6328.                     AnObj = Object
  6329.                       I : i n t e g e r ;
  6330.                       Constructor I n i t ;
  6331.                       Destructor Done ;
  6332.                       end ;
  6333.  
  6334.            VarP :   SS;
  6335.               T :   AnObj ;
  6336.  
  6337.            Constructor Anobj . I n i t ;
  6338.  
  6339.            begin
  6340.              Writeln ( ' I n i t i a l i z i n g an i n s t a n c e of AnObj ! ' ) ;
  6341.            end ;
  6342.  
  6343.            Destructor AnObj . Done ;
  6344.  
  6345.            begin
  6346.               Writeln ( ' Destroying an i n s t a n c e of AnObj ! ' ) ;
  6347.            end ;
  6348.  
  6349.            begin
  6350.               New ( P) ;
  6351.               P := ' Hello , World ! ' ;
  6352.               Dispose ( P) ;
  6353.               { P i s undefined from here on !}
  6354.               New(T, I n i t ) ;
  6355.               T . i :=0;
  6356.               Dispose ( T, Done ) ;
  6357.            end .
  6358.  
  6359.  
  6360.            DSeg
  6361. Declaration: Function DSeg : Word;
  6362.  
  6363. Description: DSeg returns the data segment register. In Free Pascal, it returns always a zero,
  6364.            since Free Pascal is a 32 bit compiler.
  6365.  
  6366.                                                       109
  6367.  
  6368.  
  6369.  
  6370.                                                          12.2. FUNCTIONS AND PROCEDURES
  6371.  
  6372.  
  6373.      Errors: None.
  6374.  
  6375.    See also: CSeg (107), Seg (139), Ofs (128), Ptr (131)
  6376.  
  6377.             Program Example17 ;
  6378.  
  6379.             { Program to demonstrate the DSeg f u n c t i o n . }
  6380.  
  6381.             VarW : Word;
  6382.             begin
  6383.               W:=DSeg; {W:=0, This f u n c t i o n i s provided f o r c o m p a t i b i l i t y ,
  6384.                                           FPC i s a 32 b i t c o m i l e r .}
  6385.             end .
  6386.  
  6387.  
  6388.             Eof
  6389. Declaration: Function Eof [(F : Any file type)] : Boolean;
  6390.  
  6391. Description: Eof returns True if the file-pointer has reached the end of the file, or if the file is
  6392.             empty. In all other cases Eof returns False. If no file F is specified, standard input
  6393.             is assumed.
  6394.  
  6395.      Errors: None.
  6396.  
  6397.    See also: Eoln (110), Assign (100), Reset (134), Rewrite (135)
  6398.  
  6399.             Program Example18 ;
  6400.  
  6401.             { Program to demonstrate the Eof f u n c t i o n . }
  6402.  
  6403.             Var T1, T2 : text ;
  6404.                      C : Char ;
  6405.  
  6406.             begin
  6407.                { Set f i l e to read from . Empty means from standard input .}
  6408.                a s s i g n ( t1 , paramstr ( 1 ) ) ;
  6409.                reset ( t1 ) ;
  6410.                { Set f i l e to w r i t e to . Empty means to standard output . }
  6411.                a s s i g n ( t2 , paramstr ( 2 ) ) ;
  6412.                rewrite ( t2 ) ;
  6413.                While not eof ( t1 ) do
  6414.                      begin
  6415.                      read ( t1 , C) ;
  6416.                      write ( t2 , C) ;
  6417.                      end ;
  6418.                Close ( t1 ) ;
  6419.                Close ( t2 ) ;
  6420.             end .
  6421.  
  6422.  
  6423.             Eoln
  6424. Declaration: Function Eoln [(F : Text)] : Boolean;
  6425.  
  6426.                                                          110
  6427.  
  6428.  
  6429.  
  6430.                                                     12.2. FUNCTIONS AND PROCEDURES
  6431.  
  6432.  
  6433. Description: Eof returns True if the file pointer has reached the end of a line, which is demar-
  6434.            cated by a line-feed character (ASCII value 10), or if the end of the file is reached.
  6435.            In all other cases Eof returns False. If no file F is specified, standard input is
  6436.            assumed. It can only be used on files of type Text.
  6437.  
  6438.      Errors: None.
  6439.  
  6440.    See also: Eof (110), Assign (100), Reset (134), Rewrite (135)
  6441.  
  6442.            Program Example19 ;
  6443.  
  6444.            { Program to demonstrate the Eoln f u n c t i o n . }
  6445.  
  6446.            begin
  6447.               { This program waits f o r keyboard input . }
  6448.               { I t w i l l p r i n t True when an empty l i n e i s put in ,
  6449.                     and f a l s e when you type a non-empty l i n e .
  6450.                     I t w i l l only stop when you p r e s s enter .}
  6451.               Writeln ( eoln ) ;
  6452.            end .
  6453.  
  6454.  
  6455.            Erase
  6456. Declaration: Procedure Erase (Var F : Any file type);
  6457.  
  6458. Description: Erase removes an unopened file from disk. The file should be assigned with
  6459.            Assign, but not opened with Reset or Rewrite
  6460.  
  6461.      Errors: A run-time error will be generated if the specified file doesn't exist, or is opened
  6462.            by the program.
  6463.  
  6464.    See also: Assign (100)
  6465.  
  6466.            Program Example20 ;
  6467.  
  6468.            { Program to demonstrate the Erase f u n c t i o n . }
  6469.  
  6470.            Var F : Text ;
  6471.  
  6472.            begin
  6473.               { Create a f i l e with a l i n e of text in i t }
  6474.               Assign ( F, ' t e s t . txt ' ) ;
  6475.               Rewrite ( F ) ;
  6476.               Writeln ( F, ' Try and f i n d t h i s when I ' ' m f i n i s h e d ! ' ) ;
  6477.               c l o s e ( f ) ;
  6478.               { Now remove the f i l e }
  6479.               Erase ( f ) ;
  6480.            end .
  6481.  
  6482.  
  6483.            Exit
  6484. Declaration: Procedure Exit ([Var X : return type )];
  6485.  
  6486.  
  6487.  
  6488.                                                     111
  6489.  
  6490.  
  6491.  
  6492.                                                           12.2. FUNCTIONS AND PROCEDURES
  6493.  
  6494.  
  6495. Description: Exit exits the current subroutine, and returns control to the calling routine. If
  6496.            invoked in the main program routine, exit stops the program. The optional argu-
  6497.            ment X allows to specify a return value, in the case Exit is invoked in a function.
  6498.            The function result will then be equal to X.
  6499.  
  6500.      Errors: None.
  6501.  
  6502.    See also: Halt (117)
  6503.  
  6504.            Program Example21 ;
  6505.  
  6506.            { Program to demonstrate the Exit f u n c t i o n . }
  6507.  
  6508.            Procedure DoAnExit ( Yes : Boolean ) ;
  6509.  
  6510.            { This procedure demonstrates the normal Exit }
  6511.  
  6512.            begin
  6513.               Writeln ( ' Hello from DoAnExit ! ' ) ;
  6514.               I f Yes then
  6515.                     begin
  6516.                     Writeln ( ' B a i l i n g out e a r l y . ' ) ;
  6517.                     exit ;
  6518.                     end ;
  6519.               Writeln ( ' Continuing to the end . ' ) ;
  6520.            end ;
  6521.  
  6522.            Function P o s i t i v e ( Which : I n t e g e r ) : Boolean ;
  6523.  
  6524.            { This f u n c t i o n demonstrates the e x t r a FPC f e a t u r e of Exit :
  6525.               You can s p e c i f y a r e t u r n value f o r the f u n c t i o n }
  6526.  
  6527.            begin
  6528.               i f Which >0 then
  6529.                     exit ( True )
  6530.               else
  6531.                     exit ( False ) ;
  6532.            end ;
  6533.  
  6534.            begin
  6535.               { This c a l l w i l l go to the end }
  6536.               DoAnExit ( False ) ;
  6537.               { This c a l l w i l l b a i l out e a r l y }
  6538.               DoAnExit ( True ) ;
  6539.               i f P o s i t i v e (-1) then
  6540.                     Writeln ( ' The compiler i s nuts , -1 i s not p o s i t i v e . ' )
  6541.               else
  6542.                     Writeln ( ' The compiler i s not so bad , -1 seems to be n e g a t i v e . ' ) ;
  6543.            end .
  6544.  
  6545.  
  6546.            Exp
  6547. Declaration: Function Exp (Var X : Real) : Real;
  6548.  
  6549.  
  6550.                                                           112
  6551.  
  6552.  
  6553.  
  6554.                                                            12.2. FUNCTIONS AND PROCEDURES
  6555.  
  6556.  
  6557. Description: Exp returns the exponent of X, i.e. the number e to the power X.
  6558.      Errors: None.
  6559.    See also: Ln (123), Power (131)
  6560.  
  6561.             Program Example22 ;
  6562.  
  6563.             { Program to demonstrate the Exp f u n c t i o n . }
  6564.  
  6565.             begin
  6566.                Writeln ( Exp ( 1 ) : 8 : 2 ) ; { Should p r i n t 2 . 7 2 }
  6567.             end .
  6568.  
  6569.  
  6570.             Filepos
  6571. Declaration: Function Filepos (Var F : Any file type) : Longint;
  6572. Description: Filepos returns the current record position of the file-pointer in file F. It cannot
  6573.             be invoked with a file of type Text. If you try to do this, a compiler error will be
  6574.             generated.
  6575.      Errors: None.
  6576.    See also: Filesize (114)
  6577.  
  6578.             Program Example23 ;
  6579.  
  6580.             { Program to demonstrate the F i l e P o s f u n c t i o n . }
  6581.  
  6582.             Var F : File of Longint ;
  6583.                      L , FP : l o n g i n t ;
  6584.  
  6585.             begin
  6586.                { F i l l a f i l e with data :
  6587.                      Each p o s i t i o n c o n t a i n s the p o s i t i o n ! }
  6588.                Assign ( F, ' t e s t . dat ' ) ;
  6589.                Rewrite ( F ) ;
  6590.                For L:=0 to 100 do
  6591.                      begin
  6592.                      FP:= FilePos ( F ) ;
  6593.                      Write ( F, FP) ;
  6594.                      end ;
  6595.                Close ( F ) ;
  6596.                Reset ( F ) ;
  6597.                { I f a l l goes w e l l , nothing i s d i s p l a y e d here . }
  6598.                While not ( Eof ( F ) ) do
  6599.                      begin
  6600.                      FP:= FilePos ( F ) ;
  6601.                      Read ( F, L ) ;
  6602.                      i f L<>FP then
  6603.                         Writeln ( ' Something wrong : Got ' , l , ' on pos ' , FP) ;
  6604.                      end ;
  6605.                Close ( F ) ;
  6606.                Erase ( f ) ;
  6607.             end .
  6608.  
  6609.                                                            113
  6610.  
  6611.  
  6612.  
  6613.                                                       12.2. FUNCTIONS AND PROCEDURES
  6614.  
  6615.  
  6616.            Filesize
  6617. Declaration: Function Filesize (Var F : Any file type) : Longint;
  6618. Description: Filesize returns the total number of records in file F. It cannot be invoked with
  6619.            a file of type Text. (under linux, this also means that it cannot be invoked on
  6620.            pipes.) If F is empty, 0 is returned.
  6621.      Errors: None.
  6622.    See also: Filepos (113)
  6623.  
  6624.            Program Example24 ;
  6625.  
  6626.             { Program to demonstrate the F i l e S i z e f u n c t i o n . }
  6627.  
  6628.            Var F : File Of byte ;
  6629.                     L : File Of Longint ;
  6630.  
  6631.             begin
  6632.                Assign ( F, paramstr ( 1 ) ) ;
  6633.               Reset ( F ) ;
  6634.               Writeln ( ' F i l e s i z e in bytes : ' , F i l e S i z e ( F ) ) ;
  6635.                Close ( F ) ;
  6636.                Assign ( L , paramstr ( 1 ) ) ;
  6637.               Reset ( L ) ;
  6638.               Writeln ( ' F i l e s i z e in Longints : ' , F i l e S i z e ( L ) ) ;
  6639.                Close ( f ) ;
  6640.            end .
  6641.  
  6642.  
  6643.            Fillchar
  6644. Declaration: Procedure Fillchar (Var X;Count : Longint;Value : char or byte);;
  6645. Description: Fillchar fills the memory starting at X with Count bytes or characters with value
  6646.            equal to Value.
  6647.      Errors: No checking on the size of X is done.
  6648.    See also: Fillword (115), Move (127)
  6649.  
  6650.            Program Example25 ;
  6651.  
  6652.             { Program to demonstrate the F i l l C h a r f u n c t i o n . }
  6653.  
  6654.            Var S : String [ 1 0 ] ;
  6655.                     I : Byte ;
  6656.             begin
  6657.               For i :=10 downto 0 do
  6658.                     begin
  6659.                     { F i l l S with i spaces }
  6660.                     FillChar ( S , SizeOf ( S ) , ' ' ) ;
  6661.                     { Set Length }
  6662.                     SetLength ( S , I ) ;
  6663.                     Writeln ( s , '   ' ) ;
  6664.                     end ;
  6665.            end .
  6666.  
  6667.                                                       114
  6668.  
  6669.  
  6670.  
  6671.                                                       12.2. FUNCTIONS AND PROCEDURES
  6672.  
  6673.  
  6674.            Fillword
  6675. Declaration: Procedure Fillword (Var X;Count : Longint;Value : Word);;
  6676.  
  6677. Description: Fillword fills the memory starting at X with Count words with value equal to
  6678.            Value.
  6679.  
  6680.     Errors: No checking on the size of X is done.
  6681.  
  6682.   See also: Fillchar (114), Move (127)
  6683.  
  6684.            Program Example76 ;
  6685.  
  6686.            { Program to demonstrate the FillWord f u n c t i o n . }
  6687.  
  6688.            Var W : Array [ 1 . . 1 0 0 ] of Word ;
  6689.  
  6690.            begin
  6691.               { Quick i n i t i a l i z a t i o n of array W }
  6692.               FillWord (W, 1 0 0 , 0 ) ;
  6693.            end .
  6694.  
  6695.  
  6696.            Flush
  6697. Declaration: Procedure Flush (Var F : Text);
  6698.  
  6699. Description: Flush empties the internal bu er of an opened file F and writes the contents to
  6700.            disk. The file is not closed as a result of this call.
  6701.  
  6702.     Errors: If the disk is full, a run-time error will be generated.
  6703.  
  6704.   See also: Close (104)
  6705.  
  6706.            Program Example26 ;
  6707.  
  6708.            { Program to demonstrate the Flush f u n c t i o n . }
  6709.  
  6710.            Var F : Text ;
  6711.  
  6712.            begin
  6713.               { Assign F to standard output }
  6714.               Assign ( F, ' ' ) ;
  6715.               Rewrite ( F ) ;
  6716.               Writeln ( F, ' This l i n e i s w r i t t e n f i r s t , but appears l a t e r ! ' ) ;
  6717.               { At t h i s point the text i s in the i n t e r n a l p a s c a l b u f f e r ,
  6718.                     and not yet w r i t t e n to standard output }
  6719.               Writeln ( ' This l i n e appears f i r s t , but i s w r i t t e n l a t e r ! ' ) ;
  6720.               { A w r i t e l n to ' output ' always causes a f l u s h - so t h i s text i s
  6721.                     w r i t t e n to screen }
  6722.               Flush ( f ) ;
  6723.               { At t h i s point , the text w r i t t e n to F i s w r i t t e n to screen . }
  6724.               Write ( F, ' F i n i s h i n g ' ) ;
  6725.               Close ( f ) ;      { C l o s i n g a f i l e always causes a f l u s h f i r s t }
  6726.               Writeln ( ' o f f . ' ) ;
  6727.            end .
  6728.  
  6729.  
  6730.                                                       115
  6731.  
  6732.  
  6733.  
  6734.                                                        12.2. FUNCTIONS AND PROCEDURES
  6735.  
  6736.  
  6737.            Frac
  6738. Declaration: Function Frac (X : Real) : Real;
  6739.  
  6740. Description: Frac returns the non-integer part of X.
  6741.  
  6742.      Errors: None.
  6743.  
  6744.    See also: Round (136), Int (121)
  6745.  
  6746.            Program Example27 ;
  6747.  
  6748.            { Program to demonstrate the Frac f u n c t i o n . }
  6749.  
  6750.            Var R : Real ;
  6751.  
  6752.            begin
  6753.               Writeln ( Frac ( 1 2 3 . 4 5 6 ) : 0 : 3 ) ;    { P r i n t s    O.456 }
  6754.               Writeln ( Frac ( - 1 2 3 . 4 5 6 ) : 0 : 3 ) ; { P r i n t s -O.456 }
  6755.            end .
  6756.  
  6757.  
  6758.            Freemem
  6759. Declaration: Procedure Freemem (Var P : pointer; Count : Longint);
  6760.  
  6761. Description: Freemem releases the memory occupied by the pointer P, of size Count (in bytes),
  6762.            and returns it to the heap. P should point to the memory allocated to a dynamical
  6763.            variable.
  6764.  
  6765.      Errors: An error will occur when P doesn't point to the heap.
  6766.  
  6767.    See also: Getmem (117), New (127), Dispose (108)
  6768.  
  6769.            Program Example28 ;
  6770.  
  6771.            { Program to demonstrate the FreeMem and GetMem f u n c t i o n s . }
  6772.  
  6773.            Var P : Pointer ;
  6774.                     MM : Longint ;
  6775.  
  6776.            begin
  6777.               { Get memory fo r P }
  6778.               MM:=MemAvail ;
  6779.               Writeln ( ' Memory a v a i l a b l e b e f o r e GetMem : ' , MemAvail ) ;
  6780.               GetMem ( P, 8 0 ) ;
  6781.               MM:=MM-Memavail ;
  6782.               Write       ( ' Memory a v a i l a b l e a f t e r GetMem        : ' , MemAvail ) ;
  6783.               Writeln ( ' or ' ,MM, ' bytes l e s s than b e f o r e the c a l l . ' ) ;
  6784.               { f i l l i t with spaces }
  6785.               FillChar ( P  , 8 0 , ' ' ) ;
  6786.               { Free the memory again }
  6787.               FreeMem ( P, 8 0 ) ;
  6788.               Writeln ( ' Memory a v a i l a b l e a f t e r FreeMem : ' , MemAvail ) ;
  6789.            end .
  6790.  
  6791.  
  6792.  
  6793.                                                        116
  6794.  
  6795.  
  6796.  
  6797.                                                      12.2. FUNCTIONS AND PROCEDURES
  6798.  
  6799.  
  6800.            Getdir
  6801. Declaration: Procedure Getdir (drivenr : byte;var dir : string);
  6802. Description: Getdir returns in dir the current directory on the drive drivenr, where drivenr
  6803.            is 1 for the first floppy drive, 3 for the first hard disk etc. A value of 0 returns the
  6804.            directory on the current disk. On linux, drivenr is ignored, as there is only one
  6805.            directory tree.
  6806.     Errors: An error is returned under dos, if the drive requested isn't ready.
  6807.   See also: Chdir (104)
  6808.  
  6809.            Program Example29 ;
  6810.  
  6811.            { Program to demonstrate the GetDir f u n c t i o n . }
  6812.  
  6813.            Var S : String ;
  6814.  
  6815.            begin
  6816.               GetDir ( 0 , S ) ;
  6817.               Writeln ( ' Current d i r e c t o r y i s : ' , S ) ;
  6818.            end .
  6819.  
  6820.  
  6821.            Getmem
  6822. Declaration: Procedure Getmem (var p : pointer;size : Longint);
  6823. Description: Getmem reserves Size bytes memory on the heap, and returns a pointer to this
  6824.            memory in p. If no more memory is available, nil is returned.
  6825.     Errors: None.
  6826.   See also: Freemem (116), Dispose (108), New (127)
  6827.  
  6828.            For an example, see Freemem (116).
  6829.  
  6830.  
  6831.            Halt
  6832. Declaration: Procedure Halt [(Errnum : byte)];
  6833. Description: Halt stops program execution and returns control to the calling program. The
  6834.            optional argument Errnum specifies an exit value. If omitted, zero is returned.
  6835.     Errors: None.
  6836.   See also: Exit (111)
  6837.  
  6838.            Program Example30 ;
  6839.  
  6840.            { Program to demonstrate the Halt f u n c t i o n . }
  6841.  
  6842.            begin
  6843.             Writeln ( ' Before Halt . ' ) ;
  6844.             Halt ( 1 ) ; { Stop with e x i t code 1 }
  6845.             Writeln ( ' After Halt doesn ' ' t get executed . ' ) ;
  6846.            end .
  6847.  
  6848.  
  6849.                                                      117
  6850.  
  6851.  
  6852.  
  6853.                                                       12.2. FUNCTIONS AND PROCEDURES
  6854.  
  6855.  
  6856.            HexStr
  6857. Declaration: Function HexStr (Value : longint; cnt : byte) : String;
  6858.  
  6859. Description: HexStr returns a string with the hexadecimal representation of Value. The string
  6860.            has at most cnt charaters. (i.e. only the cnt rightmost nibbles are taken into
  6861.            account) To have a complete representation of a Longint-type value, you need 8
  6862.            nibbles, i.e. cnt=8.
  6863.  
  6864.      Errors: None.
  6865.  
  6866.    See also: Str (144), Val (146), BinStr (101)
  6867.  
  6868.            Program example81 ;
  6869.  
  6870.            { Program to demonstrate the HexStr f u n c t i o n }
  6871.  
  6872.            Const Value = 45678;
  6873.  
  6874.            Var I : l o n g i n t ;
  6875.  
  6876.            begin
  6877.               For I :=1 to 10 do
  6878.                     Writeln ( HexStr ( Value , I ) ) ;
  6879.            end .
  6880.  
  6881.  
  6882.            Hi
  6883. Declaration: Function Hi (X : Ordinal type) : Word or byte;
  6884.  
  6885. Description: Hi returns the high byte or word from X, depending on the size of X. If the size of
  6886.            X is 4, then the high word is returned. If the size is 2 then the high byte is returned.
  6887.            Hi cannot be invoked on types of size 1, such as byte or char.
  6888.  
  6889.      Errors: None
  6890.  
  6891.    See also: Lo (123)
  6892.  
  6893.            Program Example31 ;
  6894.  
  6895.            { Program to demonstrate the Hi f u n c t i o n . }
  6896.  
  6897.            varL : Longint ;
  6898.               W : Word ;
  6899.  
  6900.            begin
  6901.               L:=1 Shl 1 6 ;            { = $10000 }
  6902.               W:=1 Shl 8 ;              { = $100 }
  6903.                  Writeln ( Hi ( L ) ) ; { P r i n t s 1 }
  6904.                  Writeln ( Hi (W) ) ; { P r i n t s 1 }
  6905.            end .
  6906.  
  6907.  
  6908.  
  6909.  
  6910.  
  6911.                                                       118
  6912.  
  6913.  
  6914.  
  6915.                                                         12.2. FUNCTIONS AND PROCEDURES
  6916.  
  6917.  
  6918.            High
  6919. Declaration: Function High (Type identifier or variable reference) : Longint;
  6920.  
  6921. Description: The return value of High depends on it's argument:
  6922.  
  6923.               1.If the argument is an ordinal type, High returns the lowest value in the range
  6924.                     of the given ordinal type.
  6925.               2.If the argument is an array type or an array type variable then High returns
  6926.                     the highest possible value of it's index.
  6927.               3.If the argument is an open array identifier in a function or procedure, then
  6928.                     High returns the highest index of the array, as if the array has a zero-based
  6929.                     index.
  6930.  
  6931.     Errors: None.
  6932.  
  6933.   See also: Low (124), Ord (128), Pred (131), Succ (144)
  6934.  
  6935.            Program example80 ;
  6936.  
  6937.            { Example to demonstrate the High and Low f u n c t i o n s . }
  6938.  
  6939.            Type TEnum = ( North , East , South , West ) ;
  6940.                       TRange = 1 4 . . 5 5 ;
  6941.                       TArray = Array [ 2 . . 1 0 ] of Longint ;
  6942.  
  6943.            Function Average ( Row : Array of Longint ) : Real ;
  6944.  
  6945.            Var I : l o n g i n t ;
  6946.                     Temp : Real ;
  6947.  
  6948.  
  6949.            begin
  6950.              Temp := Row [ 0 ] ;
  6951.              For I : = 1 to High ( Row) do
  6952.                      Temp := Temp + Row[ i ] ;
  6953.               Average := Temp / ( High ( Row)+1);
  6954.            end ;
  6955.  
  6956.            Var A : TEnum;
  6957.                     B : TRange ;
  6958.                     C : TArray ;
  6959.                     I : l o n g i n t ;
  6960.  
  6961.            begin
  6962.               Writeln ( ' TEnum goes from : ' , Ord(Low(TEnum) ) , ' to ' , Ord( high (TEnum) ) , ' . ' ) ;
  6963.               Writeln ( ' A                goes from : ' , Ord(Low(A) ) , ' to ' , Ord( high (A) ) , ' . ' ) ;
  6964.               Writeln ( ' TRange goes from : ' , Ord(Low( TRange ) ) , ' to ' , Ord( high ( TRange ) ) , ' . ' ) ;
  6965.               Writeln ( ' B                goes from : ' , Ord(Low(B) ) , ' to ' , Ord( high (B) ) , ' . ' ) ;
  6966.               Writeln ( ' TArray index goes from : ' , Ord(Low( TArray ) ) , ' to ' , Ord( high ( TArray ) ) , ' . ' ) ;
  6967.               Writeln ( ' C index                  goes from : ' , Low(C) , ' to ' , high (C) , ' . ' ) ;
  6968.              For I :=Low(C) to High (C) do
  6969.                     C[ i ]:= I ;
  6970.               Writeln ( ' Average : ' , Average ( c ) ) ;
  6971.            end .
  6972.  
  6973.  
  6974.                                                         119
  6975.  
  6976.  
  6977.  
  6978.                                                          12.2. FUNCTIONS AND PROCEDURES
  6979.  
  6980.  
  6981.            Inc
  6982. Declaration: Procedure Inc (Var X : Any ordinal type[; Increment : Longint]);
  6983.  
  6984. Description: Inc increases the value of X with Increment. If Increment isn't specified, then 1
  6985.            is taken as a default.
  6986.  
  6987.      Errors: If range checking is on, then A range check can occur, or an overflow error, if you
  6988.            try to increase X over its maximum value.
  6989.  
  6990.    See also: Dec (107)
  6991.  
  6992.            Program Example32 ;
  6993.  
  6994.            { Program to demonstrate the Inc f u n c t i o n . }
  6995.  
  6996.            Const
  6997.               C : C a r d i n a l     = 1;
  6998.               L : Longint             = 1;
  6999.               I : I n t e g e r       = 1;
  7000.               W : Word                = 1;
  7001.               B : Byte                = 1;
  7002.               SI : S h o r t I n t = 1;
  7003.               CH : Char               = ' A' ;
  7004.  
  7005.            begin
  7006.               Inc ( C ) ;            { C:=2        }
  7007.               Inc ( L , 5 ) ;        { L:=6        }
  7008.               Inc ( I , - 3 ) ;      { I :=-2      }
  7009.               Inc (W, 3 ) ;          { W:=4        }
  7010.               Inc ( B, 1 0 0 ) ; { B:=101 }
  7011.               Inc ( SI , - 3) ; { Si :=-2 }
  7012.               Inc ( CH, 1 ) ;        { ch := ' B' }
  7013.            end .
  7014.  
  7015.  
  7016.            Insert
  7017. Declaration: Procedure Insert (Const Source : String;var S : String;Index : Longint);
  7018.  
  7019. Description: Insert inserts string Source in string S, at position Index, shifting all characters
  7020.            after Index to the right. The resulting string is truncated at 255 characters, if
  7021.            needed. (i.e. for shortstrings)
  7022.  
  7023.      Errors: None.
  7024.  
  7025.    See also: Delete (108), Copy (106), Pos (130)
  7026.  
  7027.            Program Example33 ;
  7028.  
  7029.            { Program to demonstrate the I n s e r t f u n c t i o n . }
  7030.  
  7031.            Var S : String ;
  7032.  
  7033.            begin
  7034.               S:= ' Free Pascal i s d i f f i c u l t to use ! ' ;
  7035.               Insert ( ' NOT ' , S , pos ( ' d i f f i c u l t ' , S ) ) ;
  7036.  
  7037.                                                           120
  7038.  
  7039.  
  7040.  
  7041.                                                              12.2. FUNCTIONS AND PROCEDURES
  7042.  
  7043.  
  7044.               writeln ( s ) ;
  7045.            end .
  7046.  
  7047.  
  7048.            Int
  7049. Declaration: Function Int (X : Real) : Real;
  7050.  
  7051. Description: Int returns the integer part of any Real X, as a Real.
  7052.  
  7053.      Errors: None.
  7054.  
  7055.    See also: Frac (116), Round (136)
  7056.  
  7057.            Program Example34 ;
  7058.  
  7059.            { Program to demonstrate the Int f u n c t i o n . }
  7060.  
  7061.            begin
  7062.               Writeln ( Int ( 1 2 3 . 4 5 6 ) : 0 : 1 ) ;      { P r i n t s    123.0 }
  7063.               Writeln ( Int ( - 1 2 3 . 4 5 6 ) : 0 : 1 ) ; { P r i n t s -123.0 }
  7064.            end .
  7065.  
  7066.  
  7067.            IOresult
  7068. Declaration: Function IOresult : Word;
  7069.  
  7070. Description: IOresult contains the result of any input/output call, when the {$i-} compiler
  7071.            directive is active, disabling IO checking. When the flag is read, it is reset to zero.
  7072.            If IOresult is zero, the operation completed successfully. If non-zero, an error
  7073.            occurred. The following errors can occur:
  7074.            dos errors :
  7075.  
  7076.            2 File not found.
  7077.            3 Path not found.
  7078.            4 Too many open files.
  7079.            5 Access denied.
  7080.            6 Invalid file handle.
  7081.            12 Invalid file-access mode.
  7082.            15 Invalid disk number.
  7083.            16 Cannot remove current directory.
  7084.            17 Cannot rename across volumes.
  7085.  
  7086.            I/O errors :
  7087.  
  7088.            100 Error when reading from disk.
  7089.            101 Error when writing to disk.
  7090.            102 File not assigned.
  7091.            103 File not open.
  7092.            104 File not opened for input.
  7093.            105 File not opened for output.
  7094.  
  7095.                                                              121
  7096.  
  7097.  
  7098.  
  7099.                                                          12.2. FUNCTIONS AND PROCEDURES
  7100.  
  7101.  
  7102.            106 Invalid number.
  7103.  
  7104.            Fatal errors :
  7105.  
  7106.            150 Disk is write protected.
  7107.            151 Unknown device.
  7108.            152 Drive not ready.
  7109.            153 Unknown command.
  7110.            154 CRC check failed.
  7111.            155 Invalid drive specified..
  7112.            156 Seek error on disk.
  7113.            157 Invalid media type.
  7114.            158 Sector not found.
  7115.            159 Printer out of paper.
  7116.            160 Error when writing to device.
  7117.            161 Error when reading from device.
  7118.            162 Hardware failure.
  7119.  
  7120.      Errors: None.
  7121.  
  7122.    See also: All I/O functions.
  7123.  
  7124.            Program Example35 ;
  7125.  
  7126.            { Program to demonstrate the IOResult f u n c t i o n . }
  7127.  
  7128.            Var F : text ;
  7129.  
  7130.            begin
  7131.               Assign ( f , paramstr ( 1 ) ) ;
  7132.               { $i -}
  7133.               Reset ( f ) ;
  7134.               { $i +}
  7135.               I f IOresult <>0 then
  7136.                     writeln ( ' F i l e ' , paramstr ( 1 ) , ' doesn ' ' t e x i s t ' )
  7137.               else
  7138.                     writeln ( ' F i l e ' , paramstr ( 1 ) , ' e x i s t s ' ) ;
  7139.            end .
  7140.  
  7141.  
  7142.            Length
  7143. Declaration: Function Length (S : String) : Byte;
  7144.  
  7145. Description: Length returns the length of the string S, which is limited to 255 for shortstrings.
  7146.            If the strings S is empty, 0 is returned. Note: The length of the string S is stored
  7147.            in S[0] for shortstrings only. Ansistrings have their length stored elsewhere, the
  7148.            Length fuction should always be used on ansistrings.
  7149.  
  7150.      Errors: None.
  7151.  
  7152.    See also: Pos (130)
  7153.  
  7154.  
  7155.                                                          122
  7156.  
  7157.  
  7158.  
  7159.                                                        12.2. FUNCTIONS AND PROCEDURES
  7160.  
  7161.  
  7162.            Program Example36 ;
  7163.  
  7164.            { Program to demonstrate the Length f u n c t i o n . }
  7165.  
  7166.            Var S : String ;
  7167.                     I : I n t e g e r ;
  7168.  
  7169.            begin
  7170.               S:= ' ' ;
  7171.               for i :=1 to 10 do
  7172.                     begin
  7173.                     S:=S+'   ' ;
  7174.                     Writeln ( Length ( S ) : 2 , ' : ' , s ) ;
  7175.                     end ;
  7176.            end .
  7177.  
  7178.  
  7179.            Ln
  7180. Declaration: Function Ln (X : Real) : Real;
  7181.  
  7182. Description: Ln returns the natural logarithm of the Real parameter X. X must be positive.
  7183.  
  7184.      Errors: An run-time error will occur when X is negative.
  7185.  
  7186.    See also: Exp (112), Power (131)
  7187.  
  7188.            Program Example37 ;
  7189.  
  7190.            { Program to demonstrate the Ln f u n c t i o n . }
  7191.  
  7192.            begin
  7193.               Writeln ( Ln ( 1 ) ) ;            { P r i n t s 0 }
  7194.               Writeln ( Ln( Exp ( 1 ) ) ) ; { P r i n t s 1 }
  7195.            end .
  7196.  
  7197.  
  7198.            Lo
  7199. Declaration: Function Lo (O : Word or Longint) : Byte or Word;
  7200.  
  7201. Description: Lo returns the low byte of its argument if this is of type Integer or Word. It
  7202.            returns the low word of its argument if this is of type Longint or Cardinal.
  7203.  
  7204.      Errors: None.
  7205.  
  7206.    See also: Ord (128), Chr (104), Hi (118)
  7207.  
  7208.            Program Example38 ;
  7209.  
  7210.            { Program to demonstrate the Lo f u n c t i o n . }
  7211.  
  7212.            Var L : Longint ;
  7213.                     W : Word ;
  7214.  
  7215.            begin
  7216.  
  7217.  
  7218.                                                        123
  7219.  
  7220.  
  7221.  
  7222.                                                         12.2. FUNCTIONS AND PROCEDURES
  7223.  
  7224.  
  7225.              L :=(1 Shl 1 6 ) + ( 1 Shl 4 ) ;             { $10010 }
  7226.               Writeln ( Lo( L ) ) ;                       { P r i n t s 16 }
  7227.              W:=(1 Shl 8 ) + ( 1 Shl 4 ) ;                { $110      }
  7228.               Writeln ( Lo(W) ) ;                         { P r i n t s 16 }
  7229.            end .
  7230.  
  7231.  
  7232.            LongJmp
  7233. Declaration: Procedure LongJmp (Var env : Jmp Buf; Value : Longint);
  7234.  
  7235. Description: LongJmp jumps to the adress in the env jmp buf, and resores the registers that
  7236.            were stored in it at the corresponding SetJmp (139) call. In e ect, program flow
  7237.            will continue at the SetJmp call, which will return value instead of 0. If you pas a
  7238.            value equal to zero, it will be converted to 1 before passing it on. The call will not
  7239.            return, so it must be used with extreme care. This can be used for error recovery,
  7240.            for instance when a segmentation fault occurred.
  7241.  
  7242.     Errors: None.
  7243.  
  7244.   See also: SetJmp (139)
  7245.  
  7246.            For an example, see SetJmp (139)
  7247.  
  7248.  
  7249.            Low
  7250. Declaration: Function Low (Type identifier or variable reference) : Longint;
  7251.  
  7252. Description: The return value of Low depends on it's argument:
  7253.  
  7254.               1.If the argument is an ordinal type, Low returns the lowest value in the range
  7255.                     of the given ordinal type.
  7256.               2.If the argument is an array type or an array type variable then Low returns
  7257.                     the lowest possible value of it's index.
  7258.  
  7259.     Errors: None.
  7260.  
  7261.   See also: High (119), Ord (128), Pred (131), Succ (144)
  7262.  
  7263.            for an example, see High (119).
  7264.  
  7265.  
  7266.            Lowercase
  7267. Declaration: Function Lowercase (C : Char or String) : Char or String;
  7268.  
  7269. Description: Lowercase returns the lowercase version of its argument C. If its argument is a
  7270.            string, then the complete string is converted to lowercase. The type of the returned
  7271.            value is the same as the type of the argument.
  7272.  
  7273.     Errors: None.
  7274.  
  7275.   See also: Upcase (146)
  7276.  
  7277.  
  7278.  
  7279.  
  7280.  
  7281.                                                         124
  7282.  
  7283.  
  7284.  
  7285.                                                       12.2. FUNCTIONS AND PROCEDURES
  7286.  
  7287.  
  7288.            Program Example73 ;
  7289.  
  7290.            { Program to demonstrate the Lowercase f u n c t i o n . }
  7291.  
  7292.            Var I : Longint ;
  7293.  
  7294.            begin
  7295.               For i := ord ( ' A' ) to ord ( ' Z' ) do
  7296.                     write ( lowercase ( chr ( i ) ) ) ;
  7297.               Writeln ;
  7298.               Writeln ( Lowercase ( ' ABCDEFGHIJKLMNOPQRSTUVWXYZ' ) ) ;
  7299.            end .
  7300.  
  7301.  
  7302.            Mark
  7303. Declaration: Procedure Mark (Var P : Pointer);
  7304.  
  7305. Description: Mark copies the current heap-pointer to P.
  7306.  
  7307.      Errors: None.
  7308.  
  7309.    See also: Getmem (117), Freemem (116), New (127), Dispose (108), Maxavail (125)
  7310.  
  7311.            Program Example39 ;
  7312.  
  7313.            { Program to demonstrate the Mark and Release f u n c t i o n s . }
  7314.  
  7315.            Var P, PP, PPP,MM : Pointer ;
  7316.  
  7317.            begin
  7318.               Getmem ( P, 1 0 0 ) ;
  7319.               Mark (MM) ;
  7320.               Writeln ( ' Getmem 10 0            : Memory a v a i l a b l e : ' , MemAvail , ' ( marked ) ' ) ;
  7321.               GetMem ( PP, 1 0 0 0 ) ;
  7322.               Writeln ( ' Getmem 1000 : Memory a v a i l a b l e : ' , MemAvail ) ;
  7323.               GetMem ( PPP, 1 0 0 0 0 0 ) ;
  7324.               Writeln ( ' Getmem 10000 : Memory a v a i l a b l e : ' , MemAvail ) ;
  7325.               Release (MM) ;
  7326.               Writeln ( ' Released              : Memory a v a i l a b l e : ' , MemAvail ) ;
  7327.               { At t h i s point , PP and PPP are i n v a l i d ! }
  7328.            end .
  7329.  
  7330.  
  7331.            Maxavail
  7332. Declaration: Function Maxavail : Longint;
  7333.  
  7334. Description: Maxavail returns the size, in bytes, of the biggest free memory block in the heap.
  7335.            Remark: The heap grows dynamically if more memory is needed than is available.
  7336.  
  7337.      Errors: None.
  7338.  
  7339.    See also: Release (134), Memavail (126),Freemem (116), Getmem (117)
  7340.  
  7341.  
  7342.  
  7343.  
  7344.                                                       125
  7345.  
  7346.  
  7347.  
  7348.                                                      12.2. FUNCTIONS AND PROCEDURES
  7349.  
  7350.  
  7351.            Program Example40 ;
  7352.  
  7353.            { Program to demonstrate the MaxAvail f u n c t i o n . }
  7354.  
  7355.            VarP : Pointer ;
  7356.              I : l o n g i n t ;
  7357.  
  7358.            begin
  7359.              { This w i l l a l l o c a t e memory u n t i l there i s no more memory}
  7360.              I :=0;
  7361.              While MaxAvail >=1000 do
  7362.                     begin
  7363.                     Inc ( I ) ;
  7364.                     GetMem ( P, 1 0 0 0 ) ;
  7365.                     end ;
  7366.              { Default 4MB heap i s a l l o c a t e d , so 4000 blocks
  7367.                     should be a l l o c a t e d .
  7368.                     When compiled with the -Ch10000 switch , the program
  7369.                     w i l l be able to a l l o c a t e 10 block }
  7370.              Writeln ( ' A l l o c a t e d ' , i , ' blocks of 1000 bytes ' ) ;
  7371.            end .
  7372.  
  7373.  
  7374.            Memavail
  7375. Declaration: Function Memavail : Longint;
  7376.  
  7377. Description: Memavail returns the size, in bytes, of the free heap memory. Remark: The heap
  7378.            grows dynamically if more memory is needed than is available.
  7379.  
  7380.     Errors: None.
  7381.  
  7382.   See also: Maxavail (125),Freemem (116), Getmem (117)
  7383.  
  7384.            Program Example41 ;
  7385.  
  7386.            { Program to demonstrate the MemAvail f u n c t i o n . }
  7387.  
  7388.            VarP, PP : Pointer ;
  7389.            begin
  7390.              GetMem ( P, 1 0 0 ) ;
  7391.              GetMem ( PP, 1 0 0 0 0 ) ;
  7392.              FreeMem ( P, 1 0 0 ) ;
  7393.              { Due to the heap f r a g me n t a t i o n i n t r o d u c e d
  7394.                     By the p r e v i o u s c a l l s , the maximum amount of memory
  7395.                     i s n ' t equal to the maximum block s i z e a v a i l a b l e . }
  7396.              Writeln ( ' Total heap a v a i l a b l e          ( Bytes ) : ' , MemAvail ) ;
  7397.              Writeln ( ' Largest block a v a i l a b l e ( Bytes ) : ' , MaxAvail ) ;
  7398.            end .
  7399.  
  7400.  
  7401.  
  7402.  
  7403.                                                      126
  7404.  
  7405.  
  7406.  
  7407.                                                     12.2. FUNCTIONS AND PROCEDURES
  7408.  
  7409.  
  7410.             Mkdir
  7411. Declaration: Procedure Mkdir (const S : string);
  7412.  
  7413. Description: Mkdir creates a new directory S.
  7414.  
  7415.      Errors: If a parent-directory of directory S doesn't exist, a run-time error is generated.
  7416.  
  7417.    See also: Chdir (104), Rmdir (136)
  7418.  
  7419.             For an example, see Rmdir (136).
  7420.  
  7421.  
  7422.             Move
  7423. Declaration: Procedure Move (var Source,Dest;Count : Longint);
  7424.  
  7425. Description: Move moves Count bytes from Source to Dest.
  7426.  
  7427.      Errors: If either Dest or Source is outside the accessible memory for the process, then a
  7428.             run-time error will be generated. With older versions of the compiler, a segmentation-
  7429.             fault will occur.
  7430.  
  7431.    See also: Fillword (115), Fillchar (114)
  7432.  
  7433.             Program Example42 ;
  7434.  
  7435.             { Program to demonstrate the Move f u n c t i o n . }
  7436.  
  7437.             Var S1 , S2 : String [ 3 0 ] ;
  7438.  
  7439.             begin
  7440.                S1:= ' Hello World ! ' ;
  7441.                S2:= ' Bye , bye          ! ' ;
  7442.               Move ( S1 , S2 , Sizeof ( S1 ) ) ;
  7443.                Writeln ( S2 ) ;
  7444.             end .
  7445.  
  7446.  
  7447.             New
  7448. Declaration: Procedure New (Var P : Pointer[, Constructor]);
  7449.  
  7450. Description: New allocates a new instance of the type pointed to by P, and puts the address in
  7451.             P. If P is an object, then it is possible to specify the name of the constructor with
  7452.             which the instance will be created.
  7453.  
  7454.      Errors: If not enough memory is available, Nil will be returned.
  7455.  
  7456.    See also: Dispose (108), Freemem (116), Getmem (117), Memavail (126), Maxavail (125)
  7457.  
  7458.             For an example, see Dispose (108).
  7459.  
  7460.  
  7461.  
  7462.  
  7463.  
  7464.  
  7465.  
  7466.                                                      127
  7467.  
  7468.  
  7469.  
  7470.                                                     12.2. FUNCTIONS AND PROCEDURES
  7471.  
  7472.  
  7473.            Odd
  7474. Declaration: Function Odd (X : Longint) : Boolean;
  7475.  
  7476. Description: Odd returns True if X is odd, or False otherwise.
  7477.  
  7478.      Errors: None.
  7479.  
  7480.    See also: Abs (99), Ord (128)
  7481.  
  7482.            Program Example43 ;
  7483.  
  7484.            { Program to demonstrate the Odd f u n c t i o n . }
  7485.  
  7486.            begin
  7487.               I f Odd( 1 ) Then
  7488.                     Writeln ( ' Ev er y th i n g OK with 1 ! ' ) ;
  7489.               I f Not Odd( 2 ) Then
  7490.                     Writeln ( ' E v ery t h in g OK with 2 ! ' ) ;
  7491.            end .
  7492.  
  7493.  
  7494.            Ofs
  7495. Declaration: Function Ofs Var X : Longint;
  7496.  
  7497. Description: Ofs returns the o set of the address of a variable. This function is only supported
  7498.            for compatibility. In Free Pascal, it returns always the complete address of the
  7499.            variable, since Free Pascal is a 32 bit compiler.
  7500.  
  7501.      Errors: None.
  7502.  
  7503.    See also: DSeg (109), CSeg (107), Seg (139), Ptr (131)
  7504.  
  7505.            Program Example44 ;
  7506.  
  7507.            { Program to demonstrate the Ofs f u n c t i o n . }
  7508.  
  7509.            Var W : Pointer ;
  7510.  
  7511.  
  7512.            begin
  7513.               W:= Pointer ( Ofs (W) ) ; { W c o n t a i n s i t s own o f f s e t . }
  7514.            end .
  7515.  
  7516.  
  7517.            Ord
  7518. Declaration: Function Ord (X : Any ordinal type) : Longint;
  7519.  
  7520. Description: Ord returns the Ordinal value of a ordinal-type variable X.
  7521.  
  7522.      Errors: None.
  7523.  
  7524.    See also: Chr (104), Succ (144), Pred (131), High (119), Low (124)
  7525.  
  7526.  
  7527.  
  7528.  
  7529.                                                      128
  7530.  
  7531.  
  7532.  
  7533.                                                    12.2. FUNCTIONS AND PROCEDURES
  7534.  
  7535.  
  7536.           Program Example45 ;
  7537.  
  7538.           { Program to demonstrate the Ord , Pred , Succ f u n c t i o n s . }
  7539.  
  7540.           Type
  7541.              TEnum = ( Zero , One , Two, Three , Four ) ;
  7542.  
  7543.           VarX : Longint ;
  7544.              Y : TEnum;
  7545.  
  7546.           begin
  7547.              X:=125;
  7548.              Writeln ( Ord(X) ) ;       { P r i n t s 125 }
  7549.              X:=Pred (X) ;
  7550.              Writeln ( Ord(X) ) ;       { p r i n t s 124 }
  7551.              Y:= One ;
  7552.              Writeln ( Ord( y ) ) ;     { P r i n t s 1 }
  7553.              Y:=Succ (Y) ;
  7554.              Writeln ( Ord(Y) ) ;       { P r i n t s 2}
  7555.           end .
  7556.  
  7557.  
  7558.           Paramcount
  7559. Declaration: Function Paramcount : Longint;
  7560. Description: Paramcount returns the number of command-line arguments. If no arguments
  7561.           were given to the running program, 0 is returned.
  7562.     Errors: None.
  7563.   See also: Paramstr (129)
  7564.  
  7565.           Program Example46 ;
  7566.  
  7567.           { Program to demonstrate the ParamCount and ParamStr f u n c t i o n s . }
  7568.           VarI : Longint ;
  7569.           begin
  7570.              Writeln ( paramstr ( 0 ) , ' : Got ' , ParamCount , ' command-l i n e parameters : ' ) ;
  7571.              For i :=1 to ParamCount do
  7572.                    Writeln ( ParamStr ( i ) ) ;
  7573.           end .
  7574.  
  7575.  
  7576.           Paramstr
  7577. Declaration: Function Paramstr (L : Longint) : String;
  7578. Description: Paramstr returns the L-th command-line argument. L must be between 0 and
  7579.           Paramcount, these values included. The zeroth argument is the name with which
  7580.           the program was started.
  7581.           In all cases, the command-line will be truncated to a length of 255, even though
  7582.           the operating system may support bigger command-lines. If you want to access the
  7583.  
  7584.                                                    129
  7585.  
  7586.  
  7587.  
  7588.                                                       12.2. FUNCTIONS AND PROCEDURES
  7589.  
  7590.  
  7591.            complete command-line, you must use the argv pointer to access the Real values
  7592.            of the command-line parameters.
  7593.  
  7594.      Errors: None.
  7595.  
  7596.    See also: Paramcount (129)
  7597.  
  7598.            For an example, see Paramcount (129).
  7599.  
  7600.  
  7601.            Pi
  7602. Declaration: Function Pi : Real;
  7603.  
  7604. Description: Pi returns the value of Pi (3.1415926535897932385).
  7605.  
  7606.      Errors: None.
  7607.  
  7608.    See also: Cos (107), Sin (141)
  7609.  
  7610.            Program Example47 ;
  7611.  
  7612.            { Program to demonstrate the Pi f u n c t i o n . }
  7613.  
  7614.            begin
  7615.                  Writeln ( Pi ) ;                {3.1415926}
  7616.                  Writeln ( Sin ( Pi ) ) ;
  7617.            end .
  7618.  
  7619.  
  7620.            Pos
  7621. Declaration: Function Pos (Const Substr : String;Const S : String) : Byte;
  7622.  
  7623. Description: Pos returns the index of Substr in S, if S contains Substr. In case Substr isn't
  7624.            found, 0 is returned. The search is case-sensitive.
  7625.  
  7626.      Errors: None
  7627.  
  7628.    See also: Length (122), Copy (106), Delete (108), Insert (120)
  7629.  
  7630.            Program Example48 ;
  7631.  
  7632.            { Program to demonstrate the Pos f u n c t i o n . }
  7633.  
  7634.            VarS : String ;
  7635.            begin
  7636.                  S:= ' The f i r s t space in t h i s sentence i s at p o s i t i o n : ' ;
  7637.                  Writeln ( S , pos ( ' ' , S ) ) ;
  7638.                  S:= ' The l a s t l e t t e r of the alphabet doesn ' ' t appear in t h i s sentence ' ;
  7639.                  I f ( Pos ( ' Z' , S)=0) and ( Pos( ' z ' , S)=0) then
  7640.                     Writeln ( S ) ;
  7641.            end .
  7642.  
  7643.  
  7644.  
  7645.                                                       130
  7646.  
  7647.  
  7648.  
  7649.                                                      12.2. FUNCTIONS AND PROCEDURES
  7650.  
  7651.  
  7652.            Power
  7653. Declaration: Function Power (base,expon : Real) : Real;
  7654.  
  7655. Description: Power returns the value of base to the power expon. Base and expon can be of
  7656.            type Longint, in which case the result will also be a Longint.
  7657.            The function actually returns Exp(expon*Ln(base))
  7658.  
  7659.      Errors: None.
  7660.  
  7661.    See also: Exp (112), Ln (123)
  7662.  
  7663.            Program Example78 ;
  7664.  
  7665.            { Program to demonstrate the Power f u n c t i o n . }
  7666.  
  7667.            begin
  7668.               Writeln ( Power ( exp ( 1 . 0 ) , 1 . 0 ) : 8 : 2 ) ; { Should p r i n t 2 . 7 2 }
  7669.            end .
  7670.  
  7671.  
  7672.            Pred
  7673. Declaration: Function Pred (X : Any ordinal type) : Same type;
  7674.  
  7675. Description: Pred returns the element that precedes the element that was passed to it. If it is
  7676.            applied to the first value of the ordinal type, and the program was compiled with
  7677.            range checking on ({$R+}, then a run-time error will be generated.
  7678.  
  7679.      Errors: Run-time error 201 is generated when the result is out of range.
  7680.  
  7681.    See also: Ord (128), Pred (131), High (119), Low (124)
  7682.  
  7683.            for an example, see Ord (128)
  7684.  
  7685.  
  7686.            Ptr
  7687. Declaration: Function Ptr (Sel,Off : Longint) : Pointer;
  7688.  
  7689. Description: Ptr returns a pointer, pointing to the address specified by segment Sel and o set
  7690.            Off.
  7691.            Remarks:
  7692.  
  7693.               1.In the 32-bit flat-memory model supported by Free Pascal, this function is
  7694.                     obsolete.
  7695.               2.The returned address is simply the o set. If you recompile the RTL with
  7696.                     -dDoMapping defined, then the compiler returns the following : ptr := pointer($e0000000+sel
  7697.                     shl 4+off) under dos, or ptr := pointer(sel shl 4+off) on other OSes.
  7698.  
  7699.      Errors: None.
  7700.  
  7701.    See also: Addr (99)
  7702.  
  7703.  
  7704.  
  7705.  
  7706.  
  7707.                                                      131
  7708.  
  7709.  
  7710.  
  7711.                                                       12.2. FUNCTIONS AND PROCEDURES
  7712.  
  7713.  
  7714.            Program Example59 ;
  7715.  
  7716.            { Program to demonstrate the Ptr f u n c t i o n . }
  7717.  
  7718.            Var P :   String ;
  7719.                     S : String ;
  7720.  
  7721.            begin
  7722.               S:= ' Hello , World ! ' ;
  7723.               P:= Ptr ( Seg( S ) , Longint ( Ofs ( S ) ) ) ;
  7724.               {P now p o i n t s to S !}
  7725.               Writeln ( P );
  7726.            end .
  7727.  
  7728.  
  7729.            Random
  7730. Declaration: Function Random [(L : Longint)] : Longint or Real;
  7731. Description: Random returns a random number larger or equal to 0 and strictly less than L. If
  7732.            the argument L is omitted, a Real number between 0 and 1 is returned. (0 included,
  7733.            1 excluded)
  7734.      Errors: None.
  7735.    See also: Randomize (132)
  7736.  
  7737.            Program Example49 ;
  7738.  
  7739.            { Program to demonstrate the Random and Randomize f u n c t i o n s . }
  7740.  
  7741.            Var I , Count , guess : Longint ;
  7742.                     R : Real ;
  7743.  
  7744.            begin
  7745.               Randomize ; { This way we generate a new sequence every time
  7746.                                     the program i s run }
  7747.               Count :=0;
  7748.               For i :=1 to 1000 do
  7749.                     I f Random>0.5 then inc ( Count ) ;
  7750.               Writeln ( ' Generated ' , Count , ' numbers > 0.5' ) ;
  7751.               Writeln ( ' out of 1000 generated numbers . ' ) ;
  7752.               count :=0;
  7753.               For i :=1 to 5 do
  7754.                     begin
  7755.                     write ( ' Guess a number between 1 and 5 : ' ) ;
  7756.                     readln ( Guess ) ;
  7757.                     I f Guess=Random(5)+1 then inc ( count ) ;
  7758.                     end ;
  7759.               Writeln ( ' You guessed ' , Count , ' out of 5 c o r r e c t . ' ) ;
  7760.            end .
  7761.  
  7762.  
  7763.            Randomize
  7764. Declaration: Procedure Randomize ;
  7765.  
  7766.                                                       132
  7767.  
  7768.  
  7769.  
  7770.                                                      12.2. FUNCTIONS AND PROCEDURES
  7771.  
  7772.  
  7773. Description: Randomize initializes the random number generator of Free Pascal, by giving a
  7774.            value to Randseed, calculated with the system clock.
  7775.  
  7776.      Errors: None.
  7777.  
  7778.    See also: Random (132)
  7779.  
  7780.            For an example, see Random (132).
  7781.  
  7782.  
  7783.            Read
  7784. Declaration: Procedure Read ([Var F : Any file type], V1 [, V2, ... , Vn]);
  7785.  
  7786. Description: Read reads one or more values from a file F, and stores the result in V1, V2, etc.;
  7787.            If no file F is specified, then standard input is read. If F is of type Text, then the
  7788.            variables V1, V2 etc. must be of type Char, Integer, Real, String or PChar. If
  7789.            F is a typed file, then each of the variables must be of the type specified in the
  7790.            declaration of F. Untyped files are not allowed as an argument.
  7791.  
  7792.      Errors: If no data is available, a run-time error is generated. This behavior can be con-
  7793.            trolled with the {$i} compiler switch.
  7794.  
  7795.    See also: Readln (133), Blockread (102), Write (147), Blockwrite (103)
  7796.  
  7797.            Program Example50 ;
  7798.  
  7799.            { Program to demonstrate the Read ( Ln ) f u n c t i o n . }
  7800.  
  7801.            Var S : String ;
  7802.                     C : Char ;
  7803.                     F : File of char ;
  7804.  
  7805.            begin
  7806.               Assign ( F, ' ex50 . pp ' ) ;
  7807.               Reset ( F ) ;
  7808.               C:= ' A' ;
  7809.               Writeln ( ' The c h a r a c t e r s b e f o r e the f i r s t space in ex50 . pp are : ' ) ;
  7810.               While not Eof ( f ) and ( C<>' ' ) do
  7811.                     Begin
  7812.                     Read ( F, C) ;
  7813.                     Write ( C) ;
  7814.                     end ;
  7815.              Writeln ;
  7816.              Close ( F ) ;
  7817.              Writeln ( ' Type some words . An empty l i n e ends the program . ' ) ;
  7818.              repeat
  7819.                 Readln ( S ) ;
  7820.              u n t i l S=' ' ;
  7821.            end .
  7822.  
  7823.  
  7824.            Readln
  7825. Declaration: Procedure Readln [Var F : Text], V1 [, V2, ... , Vn]);
  7826.  
  7827.  
  7828.                                                      133
  7829.  
  7830.  
  7831.  
  7832.                                                      12.2. FUNCTIONS AND PROCEDURES
  7833.  
  7834.  
  7835. Description: Read reads one or more values from a file F, and stores the result in V1, V2,
  7836.            etc. After that it goes to the next line in the file (defined by the LineFeed (#10)
  7837.            character). If no file F is specified, then standard input is read. The variables V1,
  7838.            V2 etc. must be of type Char, Integer, Real, String or PChar.
  7839.  
  7840.      Errors: If no data is available, a run-time error is generated. This behavior can be con-
  7841.            trolled with the {$i} compiler switch.
  7842.  
  7843.    See also: Read (133), Blockread (102), Write (147), Blockwrite (103)
  7844.  
  7845.            For an example, see Read (133).
  7846.  
  7847.  
  7848.            Release
  7849. Declaration: Procedure Release (Var P : pointer);
  7850.  
  7851. Description: Release sets the top of the Heap to the location pointed to by P. All memory at
  7852.            a location higher than P is marked empty.
  7853.  
  7854.      Errors: A run-time error will be generated if P points to memory outside the heap.
  7855.  
  7856.    See also: Mark (125), Memavail (126), Maxavail (125), Getmem (117), Freemem (116) New
  7857.            (127), Dispose (108)
  7858.  
  7859.            For an example, see Mark (125).
  7860.  
  7861.  
  7862.            Rename
  7863. Declaration: Procedure Rename (Var F : Any Filetype; Const S : String);
  7864.  
  7865. Description: Rename changes the name of the assigned file F to S. F must be assigned, but not
  7866.            opened.
  7867.  
  7868.      Errors: A run-time error will be generated if F isn't assigned, or doesn't exist.
  7869.  
  7870.    See also: Erase (111)
  7871.  
  7872.            Program Example77 ;
  7873.  
  7874.             { Program to demonstrate the Rename f u n c t i o n . }
  7875.            Var F : Text ;
  7876.  
  7877.             begin
  7878.                Assign ( F, paramstr ( 1 ) ) ;
  7879.               Rename ( F, paramstr ( 2 ) ) ;
  7880.            end .
  7881.  
  7882.  
  7883.            Reset
  7884. Declaration: Procedure Reset (Var F : Any File Type[; L : Longint]);
  7885.  
  7886. Description: Reset opens a file F for reading. F can be any file type. If F is an untyped or typed
  7887.            file, then it is opened for reading and writing. If F is an untyped file, the record
  7888.            size can be specified in the optional parameter L. Default a value of 128 is used.
  7889.  
  7890.  
  7891.                                                      134
  7892.  
  7893.  
  7894.  
  7895.                                                       12.2. FUNCTIONS AND PROCEDURES
  7896.  
  7897.  
  7898.      Errors: If the file cannot be opened for reading, then a run-time error is generated. This
  7899.            behavior can be changed by the {$i} compiler switch.
  7900.  
  7901.    See also: Rewrite (135), Assign (100), Close (104), Append (100)
  7902.  
  7903.            Program Example51 ;
  7904.  
  7905.            { Program to demonstrate the Reset f u n c t i o n . }
  7906.  
  7907.            Function F i l e E x i s t s ( Name : String ) : boolean ;
  7908.  
  7909.            Var F : File ;
  7910.  
  7911.            begin
  7912.               { $i -}
  7913.               Assign ( F, Name) ;
  7914.               Reset ( F ) ;
  7915.               { $I +}
  7916.               F i l e E x i s t s :=( IoResult =0) and ( Name<>' ' ) ;
  7917.               Close ( f ) ;
  7918.            end ;
  7919.  
  7920.            begin
  7921.               I f F i l e E x i s t s ( Paramstr ( 1 ) ) then
  7922.                     Writeln ( ' F i l e found ' )
  7923.               else
  7924.                     Writeln ( ' F i l e NOT found ' ) ;
  7925.            end .
  7926.  
  7927.  
  7928.            Rewrite
  7929. Declaration: Procedure Rewrite (Var F : Any File Type[; L : Longint]);
  7930.  
  7931. Description: Rewrite opens a file F for writing. F can be any file type. If F is an untyped or
  7932.            typed file, then it is opened for reading and writing. If F is an untyped file, the
  7933.            record size can be specified in the optional parameter L. Default a value of 128 is
  7934.            used. if Rewrite finds a file with the same name as F, this file is truncated to length
  7935.            0. If it doesn't find such a file, a new file is created.
  7936.  
  7937.      Errors: If the file cannot be opened for writing, then a run-time error is generated. This
  7938.            behavior can be changed by the {$i} compiler switch.
  7939.  
  7940.    See also: Reset (134), Assign (100), Close (104), Flush (115), Append (100)
  7941.  
  7942.            Program Example52 ;
  7943.  
  7944.            { Program to demonstrate the Rewrite f u n c t i o n . }
  7945.  
  7946.            Var F : File ;
  7947.                     I : l o n g i n t ;
  7948.  
  7949.            begin
  7950.               Assign ( F, ' Test . dat ' ) ;
  7951.               { Create the f i l e . R e c o r d s i z e i s 4 }
  7952.  
  7953.  
  7954.                                                       135
  7955.  
  7956.  
  7957.  
  7958.                                                        12.2. FUNCTIONS AND PROCEDURES
  7959.  
  7960.  
  7961.               Rewrite ( F, Sizeof ( I ) ) ;
  7962.               For I :=1 to 10 do
  7963.                     BlockWrite ( F, I , 1 ) ;
  7964.               c l o s e ( f ) ;
  7965.               { F c o n t a i n s now a b i n a ry r e p r e s e n t a t i o n of
  7966.                     10 l o n g i n t s going from 1 to 10 }
  7967.            end .
  7968.  
  7969.  
  7970.            Rmdir
  7971. Declaration: Procedure Rmdir (const S : string);
  7972.  
  7973. Description: Rmdir removes the directory S.
  7974.  
  7975.      Errors: If S doesn't exist, or isn't empty, a run-time error is generated.
  7976.  
  7977.    See also: Chdir (104), Mkdir (127)
  7978.  
  7979.            Program Example53 ;
  7980.  
  7981.            { Program to demonstrate the MkDir and RmDir f u n c t i o n s . }
  7982.  
  7983.            Const D : String [ 8 ] = ' TEST. DIR ' ;
  7984.  
  7985.            Var S : String ;
  7986.  
  7987.            begin
  7988.               Writeln ( ' Making d i r e c t o r y ' , D) ;
  7989.               Mkdir ( D) ;
  7990.               Writeln ( ' Changing d i r e c t o r y to ' , D) ;
  7991.               ChDir ( D) ;
  7992.               GetDir ( 0 , S ) ;
  7993.               Writeln ( ' Current D i r e c t o r y i s : ' , S ) ;
  7994.               WRiteln ( ' Going back ' ) ;
  7995.               ChDir ( ' . . ' ) ;
  7996.               Writeln ( ' Removing d i r e c t o r y ' , D) ;
  7997.               RmDir ( D) ;
  7998.            end .
  7999.  
  8000.  
  8001.            Round
  8002. Declaration: Function Round (X : Real) : Longint;
  8003.  
  8004. Description: Round rounds X to the closest integer, which may be bigger or smaller than X.
  8005.  
  8006.      Errors: None.
  8007.  
  8008.    See also: Frac (116), Int (121), Trunc (145)
  8009.  
  8010.            Program Example54 ;
  8011.  
  8012.            { Program to demonstrate the Round f u n c t i o n . }
  8013.  
  8014.            begin
  8015.  
  8016.  
  8017.                                                         136
  8018.  
  8019.  
  8020.  
  8021.                                                        12.2. FUNCTIONS AND PROCEDURES
  8022.  
  8023.  
  8024.               Writeln ( Round ( 1 2 3 . 4 5 6 ) ) ;    { P r i n t s 124    }
  8025.               Writeln ( Round ( - 1 2 3 . 4 5 6 ) ) ; { P r i n t s -124 }
  8026.               Writeln ( Round ( 1 2 . 3 4 5 6 ) ) ;    { P r i n t s 12     }
  8027.               Writeln ( Round ( - 1 2 . 3 4 5 6 ) ) ; { P r i n t s -12 }
  8028.            end .
  8029.  
  8030.  
  8031.            Runerror
  8032. Declaration: Procedure Runerror (ErrorCode : Word);
  8033.  
  8034. Description: Runerror stops the execution of the program, and generates a run-time error
  8035.            ErrorCode.
  8036.  
  8037.      Errors: None.
  8038.  
  8039.    See also: Exit (111), Halt (117)
  8040.  
  8041.            Program Example55 ;
  8042.  
  8043.             { Program to demonstrate the RunError f u n c t i o n . }
  8044.  
  8045.             begin
  8046.               { The program w i l l stop end emit a run-e r r o r 106 }
  8047.               RunError ( 1 0 6 ) ;
  8048.            end .
  8049.  
  8050.  
  8051.            Seek
  8052. Declaration: Procedure Seek (Var F; Count : Longint);
  8053.  
  8054. Description: Seek sets the file-pointer for file F to record Nr. Count. The first record in a file
  8055.            has Count=0. F can be any file type, except Text. If F is an untyped file, with no
  8056.            record size specified in Reset (134) or Rewrite (135), 128 is assumed.
  8057.  
  8058.      Errors: A run-time error is generated if Count points to a position outside the file, or the
  8059.            file isn't opened.
  8060.  
  8061.    See also: Eof (110), SeekEof (138), SeekEoln (138)
  8062.  
  8063.            Program Example56 ;
  8064.  
  8065.             { Program to demonstrate the Seek f u n c t i o n . }
  8066.  
  8067.            VarF : File ;
  8068.                I , j : l o n g i n t ;
  8069.  
  8070.             begin
  8071.               { Create a f i l e and f i l l i t with data }
  8072.                Assign ( F, ' t e s t . dat ' ) ;
  8073.               Rewrite ( F ) ; { Create f i l e }
  8074.                Close ( f ) ;
  8075.               FileMode :=2;
  8076.               ReSet ( F, Sizeof ( i ) ) ; { Opened read / w r i t e }
  8077.  
  8078.  
  8079.                                                        137
  8080.  
  8081.  
  8082.  
  8083.                                                            12.2. FUNCTIONS AND PROCEDURES
  8084.  
  8085.  
  8086.                For I :=0 to 10 do
  8087.                      BlockWrite ( F, I , 1 ) ;
  8088.                { Go Back to the b e g i n i n g of the f i l e }
  8089.                Seek ( F , 0 ) ;
  8090.                For I :=0 to 10 do
  8091.                      begin
  8092.                      BlockRead ( F, J , 1 ) ;
  8093.                      I f J<>I then
  8094.                        Writeln ( ' Error : expected ' , i , ' , got ' , j ) ;
  8095.                      end ;
  8096.                Close ( f ) ;
  8097.             end .
  8098.  
  8099.  
  8100.             SeekEof
  8101. Declaration: Function SeekEof [(Var F : text)] : Boolean;
  8102.  
  8103. Description: SeekEof returns True is the file-pointer is at the end of the file. It ignores all
  8104.             whitespace. Calling this function has the e ect that the file-position is advanced
  8105.             until the first non-whitespace character or the end-of-file marker is reached. If the
  8106.             end-of-file marker is reached, True is returned. Otherwise, False is returned. If the
  8107.             parameter F is omitted, standard Input is assumed.
  8108.  
  8109.      Errors: A run-time error is generated if the file F isn't opened.
  8110.  
  8111.    See also: Eof (110), SeekEoln (138), Seek (137)
  8112.  
  8113.             Program Example57 ;
  8114.  
  8115.             { Program to demonstrate the SeekEof f u n c t i o n . }
  8116.             Var C : Char ;
  8117.  
  8118.             begin
  8119.                { t h i s w i l l p r i n t a l l c h a r a c t e r s from standard input except
  8120.                      Whitespace c h a r a c t e r s . }
  8121.                While Not SeekEof do
  8122.                      begin
  8123.                      Read ( C) ;
  8124.                      Write ( C) ;
  8125.                      end ;
  8126.             end .
  8127.  
  8128.  
  8129.             SeekEoln
  8130. Declaration: Function SeekEoln [(Var F : text)] : Boolean;
  8131.  
  8132. Description: SeekEoln returns True is the file-pointer is at the end of the current line. It ignores
  8133.             all whitespace. Calling this function has the e ect that the file-position is advanced
  8134.             until the first non-whitespace character or the end-of-line marker is reached. If the
  8135.             end-of-line marker is reached, True is returned. Otherwise, False is returned. The
  8136.             end-of-line marker is defined as #10, the LineFeed character. If the parameter F is
  8137.             omitted, standard Input is assumed.
  8138.  
  8139.      Errors: A run-time error is generated if the file F isn't opened.
  8140.  
  8141.                                                            138
  8142.  
  8143.  
  8144.  
  8145.                                                         12.2. FUNCTIONS AND PROCEDURES
  8146.  
  8147.  
  8148.    See also: Eof (110), SeekEof (138), Seek (137)
  8149.  
  8150.            Program Example58 ;
  8151.  
  8152.            { Program to demonstrate the SeekEoln f u n c t i o n . }
  8153.            VarC : Char;
  8154.            begin
  8155.               { This w i l l read the f i r s t l i n e of standard output and p r i n t
  8156.                     a l l c h a r a c t e r s except whitespace . }
  8157.               While not SeekEoln do
  8158.                     Begin
  8159.                     Read ( c ) ;
  8160.                     Write ( c ) ;
  8161.                     end ;
  8162.            end .
  8163.  
  8164.  
  8165.            Seg
  8166. Declaration: Function Seg Var X : Longint;
  8167.  
  8168. Description: Seg returns the segment of the address of a variable. This function is only sup-
  8169.            ported for compatibility. In Free Pascal, it returns always 0, since Free Pascal is a
  8170.            32 bit compiler, segments have no meaning.
  8171.  
  8172.      Errors: None.
  8173.  
  8174.    See also: DSeg (109), CSeg (107), Ofs (128), Ptr (131)
  8175.  
  8176.            Program Example60 ;
  8177.  
  8178.            { Program to demonstrate the Seg f u n c t i o n . }
  8179.            VarW : Word;
  8180.            begin
  8181.               W:=Seg(W) ;            { W c o n t a i n s i t s own Segment }
  8182.            end .
  8183.  
  8184.  
  8185.            SetJmp
  8186. Declaration: Function SetJmp (Var Env : Jmp Buf) : Longint;
  8187.  
  8188. Description: SetJmp fills env with the necessary data for a jump back to the point where it was
  8189.            called. It returns zero if called in this way. If the function returns nonzero, then it
  8190.            means that a call to LongJmp (124) with env as an argument was made somewhere
  8191.            in the program.
  8192.  
  8193.      Errors: None.
  8194.  
  8195.    See also: LongJmp (124)
  8196.  
  8197.  
  8198.  
  8199.  
  8200.                                                         139
  8201.  
  8202.  
  8203.  
  8204.                                                         12.2. FUNCTIONS AND PROCEDURES
  8205.  
  8206.  
  8207.            program example79 ;
  8208.  
  8209.            { Program to demonstrate the setjmp , longjmp f u n c t i o n s }
  8210.  
  8211.            procedure dojmp ( var env : jmp buf ; value : l o n g i n t ) ;
  8212.  
  8213.            begin
  8214.               value :=2;
  8215.               Writeln ( ' Going to jump ! ' ) ;
  8216.               { This w i l l r e t u r n to the setjmp c a l l ,
  8217.                     and r e t u r n value i n s t e a d of 0 }
  8218.               longjmp ( env , value ) ;
  8219.            end ;
  8220.  
  8221.            var env : jmp buf ;
  8222.  
  8223.            begin
  8224.               i f setjmp ( env )=0 then
  8225.                     begin
  8226.                     writeln ( ' Passed f i r s t time . ' ) ;
  8227.                     dojmp ( env , 2 ) ;
  8228.                     end
  8229.               else
  8230.                     writeln ( ' Passed second time . ' ) ;
  8231.            end .
  8232.  
  8233.  
  8234.            SetLength
  8235. Declaration: Procedure SetLength(var S : String; Len : Longint);
  8236. Description: SetLength sets the length of the string S to Len. S can be an ansistring or a short
  8237.            string. For ShortStrings, Len can maximally be 255. For AnsiStrings it can
  8238.            have any value. For AnsiString strings, SetLength must be used to set the length
  8239.            of the string.
  8240.      Errors: None.
  8241.    See also: Length (122)
  8242.  
  8243.            Program Example85 ;
  8244.  
  8245.            { Program to demonstrate the SetLength f u n c t i o n . }
  8246.  
  8247.            Var S : String ;
  8248.  
  8249.            begin
  8250.               FillChar ( S [ 1 ] , 1 0 0 , # 3 2 ) ;
  8251.               S e t l e n g t h ( S , 1 0 0 ) ;
  8252.               Writeln ( ' " ' , S , ' " ' ) ;
  8253.            end .
  8254.  
  8255.  
  8256.            SetTextBuf
  8257. Declaration: Procedure SetTextBuf (Var f : Text; Var Buf[; Size : Word]);
  8258.  
  8259.                                                         140
  8260.  
  8261.  
  8262.  
  8263.                                                             12.2. FUNCTIONS AND PROCEDURES
  8264.  
  8265.  
  8266. Description: SetTextBuf assigns an I/O bu er to a text file. The new bu er is located at Buf
  8267.            and is Size bytes long. If Size is omitted, then SizeOf(Buf) is assumed. The
  8268.            standard bu er of any text file is 128 bytes long. For heavy I/0 operations this
  8269.            may prove too slow. The SetTextBuf procedure allows you to set a bigger bu er
  8270.            for your application, thus reducing the number of system calls, and thus reducing
  8271.            the load on the system resources. The maximum size of the newly assigned bu er
  8272.            is 65355 bytes. Remark 1: Never assign a new bu er to an opened file. You can
  8273.            assign a new bu er immediately after a call to Rewrite (135), Reset (134) or Append,
  8274.            but not after you read from/wrote to the file. This may cause loss of data. If you
  8275.            still want to assign a new bu er after read/write operations have been performed,
  8276.            flush the file first. This will ensure that the current bu er is emptied. Remark 2:
  8277.            Take care that the bu er you assign is always valid. If you assign a local variable
  8278.            as a bu er, then after your program exits the local program block, the bu er will
  8279.            no longer be valid, and stack problems may occur.
  8280.      Errors: No checking on Size is done.
  8281.    See also: Assign (100), Reset (134), Rewrite (135), Append (100)
  8282.  
  8283.            Program Example61 ;
  8284.  
  8285.            { Program to demonstrate the SetTextBuf f u n c t i o n . }
  8286.  
  8287.            VarFin , Fout : Text ;
  8288.               Ch : Char ;
  8289.               Bufin , Bufout : Array [ 1 . . 1 0 0 0 0 ] of byte ;
  8290.  
  8291.            begin
  8292.               Assign ( Fin , paramstr ( 1 ) ) ;
  8293.               Reset ( Fin ) ;
  8294.               Assign ( Fout , paramstr ( 2 ) ) ;
  8295.               Rewrite ( Fout ) ;
  8296.               { This i s harmless b e f o r e IO has begun }
  8297.               { Try t h i s program again on a big f i l e ,
  8298.                     a f t e r commenting out the f o l l o w i n g 2
  8299.                     l i n e s and r e c o m p i l i n g i t . }
  8300.               SetTextBuf ( Fin , Bufin ) ;
  8301.               SetTextBuf ( Fout , Bufout ) ;
  8302.               While not eof ( Fin ) do
  8303.                     begin
  8304.                     Read ( Fin , ch ) ;
  8305.                     write ( Fout , ch ) ;
  8306.                     end ;
  8307.               Close ( Fin ) ;
  8308.               Close ( Fout ) ;
  8309.            end .
  8310.  
  8311.  
  8312.            Sin
  8313. Declaration: Function Sin (X : Real) : Real;
  8314. Description: Sin returns the sine of its argument X, where X is an angle in radians.
  8315.      Errors: None.
  8316.  
  8317.                                                             141
  8318.  
  8319.  
  8320.  
  8321.                                                          12.2. FUNCTIONS AND PROCEDURES
  8322.  
  8323.  
  8324.    See also: Cos (107), Pi (130), Exp (112), Ln (123)
  8325.  
  8326.            Program Example62 ;
  8327.  
  8328.            { Program to demonstrate the Sin f u n c t i o n . }
  8329.  
  8330.            begin
  8331.               Writeln ( Sin ( Pi ) : 0 : 1 ) ;        { P r i n t s 0 . 0 }
  8332.               Writeln ( Sin ( Pi / 2 ) : 0 : 1 ) ; { P r i n t s 1 . 0 }
  8333.            end .
  8334.  
  8335.  
  8336.            SizeOf
  8337. Declaration: Function SizeOf (X : Any Type) : Longint;
  8338.  
  8339. Description: SizeOf returns the size, in bytes, of any variable or type-identifier. Remark: this
  8340.            isn't really a RTL function. Its result is calculated at compile-time, and hard-coded
  8341.            in your executable.
  8342.  
  8343.      Errors: None.
  8344.  
  8345.    See also: Addr (99)
  8346.  
  8347.            Program Example63 ;
  8348.  
  8349.            { Program to demonstrate the SizeOf f u n c t i o n . }
  8350.            VarI : Longint ;
  8351.               S : String [ 1 0 ] ;
  8352.  
  8353.            begin
  8354.               Writeln ( SizeOf ( I ) ) ;          { P r i n t s 4    }
  8355.               Writeln ( SizeOf ( S ) ) ;          { P r i n t s 11 }
  8356.            end .
  8357.  
  8358.  
  8359.            Sptr
  8360. Declaration: Function Sptr : Pointer;
  8361.  
  8362. Description: Sptr returns the current stack pointer.
  8363.  
  8364.      Errors: None.
  8365.  
  8366.    See also: SSeg (143)
  8367.  
  8368.            Program Example64 ;
  8369.  
  8370.            { Program to demonstrate the SPtr f u n c t i o n . }
  8371.            VarP : Longint ;
  8372.            begin
  8373.               P:= Sptr ; { P Contains now the c u r r e n t stack p o s i t i o n . }
  8374.            end .
  8375.  
  8376.  
  8377.                                                          142
  8378.  
  8379.  
  8380.  
  8381.                                                       12.2. FUNCTIONS AND PROCEDURES
  8382.  
  8383.  
  8384.            Sqr
  8385. Declaration: Function Sqr (X : Real) : Real;
  8386. Description: Sqr returns the square of its argument X.
  8387.      Errors: None.
  8388.    See also: Sqrt (143), Ln (123), Exp (112)
  8389.  
  8390.            Program Example65 ;
  8391.  
  8392.            { Program to demonstrate the Sqr f u n c t i o n . }
  8393.            Var i : I n t e g e r ;
  8394.  
  8395.            begin
  8396.               For i :=1 to 10 do
  8397.                     writeln ( Sqr ( i ) : 3 ) ;
  8398.            end .
  8399.  
  8400.  
  8401.            Sqrt
  8402. Declaration: Function Sqrt (X : Real) : Real;
  8403. Description: Sqrt returns the square root of its argument X, which must be positive.
  8404.      Errors: If X is negative, then a run-time error is generated.
  8405.    See also: Sqr (143), Ln (123), Exp (112)
  8406.  
  8407.            Program Example66 ;
  8408.  
  8409.            { Program to demonstrate the Sqrt f u n c t i o n . }
  8410.  
  8411.            begin
  8412.               Writeln ( Sqrt ( 4 ) : 0 : 3 ) ; { P r i n t s 2 . 0 0 0 }
  8413.               Writeln ( Sqrt ( 2 ) : 0 : 3 ) ; { P r i n t s 1 . 4 1 4 }
  8414.            end .
  8415.  
  8416.  
  8417.            SSeg
  8418. Declaration: Function SSeg : Longint;
  8419. Description: SSeg returns the Stack Segment. This function is only supported for compatibility
  8420.            reasons, as Sptr returns the correct contents of the stackpointer.
  8421.      Errors: None.
  8422.    See also: Sptr (142)
  8423.  
  8424.            Program Example67 ;
  8425.  
  8426.            { Program to demonstrate the SSeg f u n c t i o n . }
  8427.            Var W : Longint ;
  8428.  
  8429.            begin
  8430.               W:=SSeg ;
  8431.            end .
  8432.  
  8433.                                                       143
  8434.  
  8435.  
  8436.  
  8437.                                                      12.2. FUNCTIONS AND PROCEDURES
  8438.  
  8439.  
  8440.            Str
  8441. Declaration: Procedure Str (Var X[:NumPlaces[:Decimals]]; Var S : String);
  8442.  
  8443. Description: Str returns a string which represents the value of X. X can be any numerical
  8444.            type. The optional NumPLaces and Decimals specifiers control the formatting of
  8445.            the string.
  8446.  
  8447.      Errors: None.
  8448.  
  8449.    See also: Val (146)
  8450.  
  8451.            Program Example68 ;
  8452.  
  8453.            { Program to demonstrate the Str f u n c t i o n . }
  8454.            Var S : String ;
  8455.  
  8456.            Function IntToStr ( I : Longint ) : String ;
  8457.  
  8458.            Var S : String ;
  8459.  
  8460.            begin
  8461.              Str ( I , S ) ;
  8462.              IntToStr :=S ;
  8463.            end ;
  8464.  
  8465.            begin
  8466.               S:= '   ' +IntToStr (-233)+ '   ' ;
  8467.               Writeln ( S ) ;
  8468.            end .
  8469.  
  8470.  
  8471.            Succ
  8472. Declaration: Function Succ (X : Any ordinal type) : Same type;
  8473.  
  8474. Description: Succ returns the element that succeeds the element that was passed to it. If it is
  8475.            applied to the last value of the ordinal type, and the program was compiled with
  8476.            range checking on ({$R+}), then a run-time error will be generated.
  8477.  
  8478.      Errors: Run-time error 201 is generated when the result is out of range.
  8479.  
  8480.    See also: Ord (128), Pred (131), High (119), Low (124)
  8481.  
  8482.            for an example, see Ord (128).
  8483.  
  8484.  
  8485.            Swap
  8486. Declaration: Function Swap (X) : Type of X;
  8487.  
  8488. Description: Swap swaps the high and low order bytes of X if X is of type Word or Integer, or
  8489.            swaps the high and low order words of X if X is of type Longint or Cardinal. The
  8490.            return type is the type of X
  8491.  
  8492.      Errors: None.
  8493.  
  8494.    See also: Lo (123), Hi (118)
  8495.  
  8496.                                                      144
  8497.  
  8498.  
  8499.  
  8500.                                                        12.2. FUNCTIONS AND PROCEDURES
  8501.  
  8502.  
  8503.            Program Example69 ;
  8504.  
  8505.            { Program to demonstrate the Swap f u n c t i o n . }
  8506.            Var W : Word ;
  8507.                     L : Longint ;
  8508.  
  8509.            begin
  8510.               W:= $1234 ;
  8511.               W:=Swap(W) ;
  8512.               i f W<>$3412 then
  8513.                     writeln ( ' Error when swapping word ! ' ) ;
  8514.               L:= $12345678 ;
  8515.               L:=Swap( L ) ;
  8516.               i f L<>$56781234 then
  8517.                     writeln ( ' Error when swapping Longint ! ' ) ;
  8518.            end .
  8519.  
  8520.  
  8521.            Trunc
  8522. Declaration: Function Trunc (X : Real) : Longint;
  8523.  
  8524. Description: Trunc returns the integer part of X, which is always smaller than (or equal to) X
  8525.            in absolute value.
  8526.  
  8527.      Errors: None.
  8528.  
  8529.    See also: Frac (116), Int (121), Round (136)
  8530.  
  8531.            Program Example54 ;
  8532.  
  8533.            { Program to demonstrate the Trunc f u n c t i o n . }
  8534.  
  8535.            begin
  8536.               Writeln ( Trunc ( 1 2 3 . 4 5 6 ) ) ;     { P r i n t s 123    }
  8537.               Writeln ( Trunc ( - 1 2 3 . 4 5 6 ) ) ; { P r i n t s -123 }
  8538.               Writeln ( Trunc ( 1 2 . 3 4 5 6 ) ) ;     { P r i n t s 12     }
  8539.               Writeln ( Trunc ( - 1 2 . 3 4 5 6 ) ) ; { P r i n t s -12 }
  8540.            end .
  8541.  
  8542.  
  8543.            Truncate
  8544. Declaration: Procedure Truncate (Var F : file);
  8545.  
  8546. Description: Truncate truncates the (opened) file F at the current file position.
  8547.  
  8548.      Errors: Errors are reported by IOresult.
  8549.  
  8550.    See also: Append (100), Filepos (113), Seek (137)
  8551.  
  8552.            Program Example71 ;
  8553.  
  8554.            { Program to demonstrate the Truncate f u n c t i o n . }
  8555.  
  8556.            Var F : File of l o n g i n t ;
  8557.  
  8558.  
  8559.                                                        145
  8560.  
  8561.  
  8562.  
  8563.                                                            12.2. FUNCTIONS AND PROCEDURES
  8564.  
  8565.  
  8566.                     I , L : Longint ;
  8567.  
  8568.            begin
  8569.               Assign ( F, ' t e s t . dat ' ) ;
  8570.               Rewrite ( F ) ;
  8571.               For I :=1 to 10 Do
  8572.                     Write ( F, I ) ;
  8573.               Writeln ( ' F i l e s i z e b e f o r e Truncate : ' , F i l e S i z e ( F ) ) ;
  8574.               Close ( f ) ;
  8575.               Reset ( F ) ;
  8576.               Repeat
  8577.                     Read ( F, I ) ;
  8578.               Until i =5;
  8579.               Truncate ( F ) ;
  8580.               Writeln ( ' F i l e s i z e a f t e r Truncate              : ' , F i l e s i z e ( F ) ) ;
  8581.               Close ( f ) ;
  8582.            end .
  8583.  
  8584.  
  8585.            Upcase
  8586. Declaration: Function Upcase (C : Char or string) : Char or String;
  8587.  
  8588. Description: Upcase returns the uppercase version of its argument C. If its argument is a string,
  8589.            then the complete string is converted to uppercase. The type of the returned value
  8590.            is the same as the type of the argument.
  8591.  
  8592.      Errors: None.
  8593.  
  8594.    See also: Lowercase (124)
  8595.  
  8596.            Program Example72 ;
  8597.  
  8598.            { Program to demonstrate the Upcase f u n c t i o n . }
  8599.  
  8600.            Var I : Longint ;
  8601.  
  8602.            begin
  8603.               For i := ord ( ' a ' ) to ord ( ' z ' ) do
  8604.                     write ( upcase ( chr ( i ) ) ) ;
  8605.               Writeln ;
  8606.               { This doesn ' t work in TP, but i t does in Free Pascal }
  8607.               Writeln ( Upcase ( ' a b c d e f g h i j k l m n o p q r s t u v w x y z ' ) ) ;
  8608.            end .
  8609.  
  8610.  
  8611.            Val
  8612. Declaration: Procedure Val (const S : string;var V;var Code : word);
  8613.  
  8614. Description: Val converts the value represented in the string S to a numerical value, and stores
  8615.            this value in the variable V, which can be of type Longint, Real and Byte. If
  8616.            the conversion isn't succesfull, then the parameter Code contains the index of the
  8617.            character in S which prevented the conversion. The string S isn't allowed to contain
  8618.            spaces.
  8619.  
  8620.  
  8621.                                                             146
  8622.  
  8623.  
  8624.  
  8625.                                                       12.2. FUNCTIONS AND PROCEDURES
  8626.  
  8627.  
  8628.      Errors: If the conversion doesn't succeed, the value of Code indicates the position where
  8629.            the conversion went wrong.
  8630.  
  8631.    See also: Str (144)
  8632.  
  8633.            Program Example74 ;
  8634.  
  8635.             { Program to demonstrate the Val f u n c t i o n . }
  8636.            Var I , Code : I n t e g e r ;
  8637.  
  8638.             begin
  8639.               Val ( ParamStr ( 1 ) , I , Code ) ;
  8640.                I f Code<>0 then
  8641.                     Writeln ( ' Error at p o s i t i o n ' , code , ' : ' , Paramstr ( 1 ) [ Code ] )
  8642.                else
  8643.                     Writeln ( ' Value : ' , I ) ;
  8644.            end .
  8645.  
  8646.  
  8647.            Write
  8648. Declaration: Procedure Write ([Var F : Any filetype;] V1 [; V2; ... , Vn)];
  8649.  
  8650. Description: Write writes the contents of the variables V1, V2 etc. to the file F. F can be a
  8651.            typed file, or a Text file. If F is a typed file, then the variables V1, V2 etc. must
  8652.            be of the same type as the type in the declaration of F. Untyped files are not
  8653.            allowed. If the parameter F is omitted, standard output is assumed. If F is of
  8654.            type Text, then the necessary conversions are done such that the output of the
  8655.            variables is in human-readable format. This conversion is done for all numerical
  8656.            types. Strings are printed exactly as they are in memory, as well as PChar types.
  8657.            The format of the numerical conversions can be influenced through the following
  8658.            modifiers:      OutputVariable : NumChars [: Decimals ] This will print the
  8659.            value of OutputVariable with a minimum of NumChars characters, from which
  8660.            Decimals are reserved for the decimals. If the number cannot be represented with
  8661.            NumChars characters, NumChars will be increased, until the representation fits. If
  8662.            the representation requires less than NumChars characters then the output is filled
  8663.            up with spaces, to the left of the generated string, thus resulting in a right-aligned
  8664.            representation. If no formatting is specified, then the number is written using its
  8665.            natural length, with nothing in front of it if it's positive, and a minus sign if it's
  8666.            negative. Real numbers are, by default, written in scientific notation.
  8667.  
  8668.      Errors: If an error occurs, a run-time error is generated. This behavior can be controlled
  8669.            with the {$i} switch.
  8670.  
  8671.    See also: WriteLn (147), Read (133), Readln (133), Blockwrite (103)
  8672.  
  8673.  
  8674.            WriteLn
  8675. Declaration: Procedure WriteLn [([Var F : Text;] [V1 [; V2; ... , Vn)]];
  8676.  
  8677. Description: WriteLn does the same as Write (147) for text files, and emits a Carriage Return -
  8678.            LineFeed character pair after that. If the parameter F is omitted, standard output
  8679.            is assumed. If no variables are specified, a Carriage Return - LineFeed character
  8680.            pair is emitted, resulting in a new line in the file F. Remark: Under linux, the
  8681.            Carriage Return character is omitted, as customary in Unix environments.
  8682.  
  8683.  
  8684.                                                       147
  8685.  
  8686.  
  8687.  
  8688.                                                  12.2. FUNCTIONS AND PROCEDURES
  8689.  
  8690.  
  8691.   Errors: If an error occurs, a run-time error is generated. This behavior can be controlled
  8692.         with the {$i} switch.
  8693.  
  8694. See also: Write (147), Read (133), Readln (133), Blockwrite (103)
  8695.  
  8696.         Program Example75 ;
  8697.  
  8698.         { Program to demonstrate the Write ( ln ) f u n c t i o n . }
  8699.  
  8700.         VarF : File of Longint ;
  8701.            L : Longint ;
  8702.  
  8703.         begin
  8704.            Write ( ' This i s on the f i r s t l i n e ! ' ) ; { No CR/LF p a i r ! }
  8705.            Writeln ( ' And t h i s too . . . ' ) ;
  8706.            Writeln ( ' But t h i s i s a l r e a d y on the second l i n e . . . ' ) ;
  8707.            Assign ( f , ' t e s t . dat ' ) ;
  8708.            Rewrite ( f ) ;
  8709.            For L:=1 to 10 do
  8710.                  write ( F, L ) ; { No w r i t e l n allowed here ! }
  8711.            Close ( f ) ;
  8712.         end .
  8713.  
  8714.  
  8715.  
  8716.  
  8717.  
  8718.  
  8719.  
  8720.  
  8721.  
  8722.  
  8723.  
  8724.  
  8725.  
  8726.  
  8727.  
  8728.  
  8729.  
  8730.  
  8731.  
  8732.  
  8733.  
  8734.  
  8735.  
  8736.  
  8737.  
  8738.  
  8739.  
  8740.  
  8741.  
  8742.  
  8743.                                                  148
  8744.  
  8745.  
  8746.  
  8747. Index
  8748.  
  8749. Abs, 99                   High, 119
  8750. Addr, 99
  8751. Append, 100               Inc, 120
  8752. Arctan, 100               Insert, 120
  8753. Assign, 100               Int, 121
  8754. Assigned, 101             IOresult, 121
  8755. BinStr, 101               Length, 122
  8756. Blockread, 102            Ln, 123
  8757. Blockwrite, 103           Lo, 123
  8758. Break, 103                LongJmp, 124
  8759.                           Low, 124
  8760. Chdir, 104                Lowercase, 124
  8761. Chr, 104
  8762. Close, 104                Mark, 125
  8763. Concat, 105               Maxavail, 125
  8764. Continue, 105             Memavail, 126
  8765. Copy, 106                 Mkdir, 127
  8766. Cos, 107                  Move, 127
  8767. CSeg, 107                 New, 127
  8768. Dec, 107                  Odd, 128
  8769. Delete, 108               Ofs, 128
  8770. Dispose, 108              Ord, 128
  8771. DSeg, 109                 Paramcount, 129
  8772. Eof, 110                  Paramstr, 129
  8773. Eoln, 110                 Pi, 130
  8774. Erase, 111                Pos, 130
  8775. Exit, 111                 Power, 131
  8776. Exp, 112                  Pred, 131
  8777.                           Ptr, 131
  8778. Filepos, 113
  8779. Filesize, 114             Random, 132
  8780. Fillchar, 114             Randomize, 132
  8781. Fillword, 115             Read, 133
  8782. Flush, 115                Readln, 133
  8783. Frac, 116                 Release, 134
  8784. Freemem, 116              Rename, 134
  8785.                           Reset, 134
  8786. Getdir, 117               Rewrite, 135
  8787. Getmem, 117               Rmdir, 136
  8788. Halt, 117                 Round, 136
  8789. HexStr, 118               Runerror, 137
  8790. Hi, 118                   Seek, 137
  8791.  
  8792.                    149
  8793.  
  8794.  
  8795.  
  8796.                           INDEX
  8797.  
  8798.  
  8799. SeekEof, 138
  8800. SeekEoln, 138
  8801. Seg, 139
  8802. SetJmp, 139
  8803. SetLength, 140
  8804. SetTextBuf, 140
  8805. Sin, 141
  8806. SizeOf, 142
  8807. Sptr, 142
  8808. Sqr, 143
  8809. Sqrt, 143
  8810. SSeg, 143
  8811. Str, 144
  8812. Succ, 144
  8813. Swap, 144
  8814.  
  8815. Trunc, 145
  8816. Truncate, 145
  8817.  
  8818. Upcase, 146
  8819.  
  8820. Val, 146
  8821.  
  8822. Write, 147
  8823. WriteLn, 147
  8824.  
  8825.  
  8826.  
  8827.  
  8828.  
  8829.  
  8830.  
  8831.  
  8832.  
  8833.  
  8834.  
  8835.  
  8836.  
  8837.  
  8838.  
  8839.  
  8840.  
  8841.  
  8842.  
  8843.  
  8844.  
  8845.  
  8846.  
  8847.  
  8848.  
  8849.  
  8850.  
  8851.  
  8852.  
  8853.                    150
  8854.  
  8855.  
  8856.  
  8857.