Comparison of Pascal and Delphi - Differences Between Standard Pascal and Delphi

Differences Between Standard Pascal and Delphi

1. The way procedures and functions can be passed as parameters differs: Delphi requires explicit procedural types to be declared where Standard Pascal does not.

2. Delphi does not support so called 'intraprocedural gotos', in which goto statements may reference targets outside the current procedure/function body.

3. Standard Pascal has file 'buffer variables', together with 'get' and 'put' standard procedures that operate on them. Neither are supported in Delphi.

4. Given a variant record in Standard Pascal, the size of a particular variant can be specified. Delphi does not support this form of 'sized' dynamic variable allocation:

new(p, t) //where t is a variant record tag type; does not compile in Delphi

5. The functions 'pack' and 'unpack' are not implemented in Delphi.

6. The Delphi compiler does not treat { and (*, } and *) as synonyms like Standard Pascal requires. In other words,

{ comment *)

is not valid in Delphi. Instead, Delphi uses the scheme of allowing the different comment types to indicate nested comments.

7. Delphi does not replace eoln with space as the Pascal standard requires. When reading through the end of a line, the eoln character is supposed to be replaced with a space in ISO 7185. Instead, reading through eoln in Delphi gives the character code for carriage return (13), followed by line feed (10).

8. Numbers and booleans are not printed out in their 'default' field widths by Delphi's version of the Write and WriteLn standard procedures, being instead printed in the minimum amount of space. For example, in Delphi,

write(5); write(55);

is equivalent to:

write(5:1); write(55:2);

However, Standard Pascal requires it to be equivalent to the following (TotalWidth is implementation-defined):

write(5:TotalWidth); write(55:TotalWidth);

Similarly, for booleans,

write(false); write(true);

is equivalent to

write('false':5); write('true':4);

in Delphi, but

write('false':TotalWidth); write('true':TotalWidth);

in ISO 7185.

9. Temporary files are not supported by Delphi using traditional Pascal I/O - executing Reset or Rewrite results in an error, where under Standard Pascal it opens a temporary file that exists for the duration of the program before being automatically deleted.

10. Notwithstanding the fact Delphi still allows using much of the traditional Pascal RTL, Delphi-specific library functionality is generally implemented in ordinary Delphi code that uses, rather than adds to, compiler-provided intrinsics. This philosophy contrasts to Standard Pascal, whose RTL must be provided by the compiler. For example, in Standard Pascal, the 'file' type is an intrinsic type - sort of like a record, but another compiler-defined type alongside records. In contrast, the TFileStream class in Delphi is an ordinary Delphi class written in ordinary Delphi code. Similarly, the Read, ReadLn, Write and WriteLn standard procedures have signatures that are not themselves legal Pascal signatures. While Delphi still implements them, only vary rarely do Delphi-specific RTL routines require similarly special handling: rather, the language was evolved to include features such as 'open arrays', default parameters and procedural overloading that can be used by user-written routines too.

Read more about this topic:  Comparison Of Pascal And Delphi

Famous quotes containing the words differences between, differences, standard, pascal and/or delphi:

    The differences between revolution in art and revolution in politics are enormous.... Revolution in art lies not in the will to destroy but in the revelation of what has already been destroyed. Art kills only the dead.
    Harold Rosenberg (1906–1978)

    I don’t know what immutable differences exist between men and women apart from differences in their genitals; perhaps there are some other unchangeable differences; probably there are a number of irrelevant differences. But it is clear that until social expectations for men and women are equal, until we provide equal respect for both men and women, our answers to this question will simply reflect our prejudices.
    Naomi Weisstein (b. 1939)

    I don’t have any problem with a reporter or a news person who says the President is uninformed on this issue or that issue. I don’t think any of us would challenge that. I do have a problem with the singular focus on this, as if that’s the only standard by which we ought to judge a president. What we learned in the last administration was how little having an encyclopedic grasp of all the facts has to do with governing.
    David R. Gergen (b. 1942)

    When a natural discourse paints a passion or an effect, one feels within oneself the truth of what one reads, which was there before, although one did not know it. Hence one is inclined to love him who makes us feel it, for he has not shown us his own riches, but ours.
    —Blaise Pascal (1623–1662)

    At Delphi I prayed
    to Apollo
    that he maintain in me
    the flame of the poem
    and I drank of the brackish
    spring there....
    Denise Levertov (b. 1923)