Comparison of Pascal and Borland Delphi

Comparison of Pascal and Borland Delphi

This article is a comparison between Pascal and Borland Delphi because Borland uses the name "Delphi" exclusively for their version of the computer language.

Pascal is a programming language, developed in 1970 by Niklaus Wirth. An alternative dialect was created by Borland Corporation. Their language went through several versions and names, such as Turbo Pascal, Borland Pascal, and finally Delphi Pascal. This page briefly goes over the differences between those dialects of the language. It does not go into the extensions provided by Delphi, that is the subject of a Delphi page. Rather it just covers the differences that exist between the base implementations.

Terminology

It is correct to refer to "Pascal" in general as Niklaus Wirth's original language (and derivatives) and Borland's dialect as "Delphi". When referring to Borland's previous dialects, the terms "Turbo Pascal", and "Borland Pascal" apply.

The term "ISO 7185" or "ISO 7185 Pascal" is used here as synonymous with Niklaus Wirth's programming language Pascal. The ISO 7185 standard is the standardized version of Niklaus Wirth's language, as he has stated several times.

Differences between the languages

Because Borland Delphi is a widely used version of Pascal, it is useful to compare the two languages. Note that here are presented only the differences between Borland Delphi and the basic ISO 7185 standard. Undiscussed are any extensions provided by Borland Delphi. In other words, this section answers the question "why doesn't my standard Pascal program run under Borland Delphi?", and perhaps "what can I write in Borland Delphi that will also be compatible with the ISO 7185 standard?".

1. Procedures and functions may not appear as parameters (it is true that it can be done, but a non-standard syntax must be used).

2. Goto statements cannot reference targets outside procedure/function bodies (so called "intraprocedural gotos").

3. No file buffer variable handling. Standard Pascal has file "buffer variables", and "get" and "put" procedures to operate on them. This functionality is not present in Borland Delphi.

4. No "sized" dynamic variable allocation. Given a variant record, the size of a particular variant cannot be specified as per the standard. I.e., the following statement is invalid:

new(p, t)

Where t is a variant record tag type.

5. The functions "pack" and "unpack" are not implemented.

6. { and (*, } and *) are not synonyms of each other as required by the standard. Ie.:

{ comment *)

is not valid in Borland Delphi (Delphi uses the scheme of allowing the different comment types to indicate nested comments).

7. Does not replace eoln with space as the 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 Borland 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, but are printed in the minimum amount of space. For example:

write(5); write(55);

is equivalent to:

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

in Delphi, but:

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

in ISO 7185, where TotalWidth is implementation-defined.

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, where TotalWidth is implementation-defined.

9. Temporary files are not supported. Applying reset() or rewrite() to a file results in an error under Delphi. Under standard Pascal it opens a temporary file that exists only for the run of the program.

See also

* Delphi programming language
* Comparison of Pascal and C
* Pascal (programming language)

Further reading

* Kathleen Jansen and Niklaus Wirth: "PASCAL - User Manual and Report." Springer-Verlag, 1974, 1985, 1991, ISBN 0-387-97649-3, ISBN 0-387-90144-2, and ISBN 3-540-90144-2 [http://www.cs.inf.ethz.ch/~wirth/books/Pascal/]
* Niklaus Wirth: "The Programming Language Pascal." Acta Informatica, 1, (Jun 1971) 35-63
* ISO/IEC 7185: "Programming Languages - PASCAL." [http://www.moorecad.com/standardpascal/]
* Doug Cooper: "Standard Pascal: User Reference Manual." W. W. Norton & Company, 1983, ISBN: 0393301214, ISBN-13: 9780393301212
* Pascal standards documents [http://www.standardpascal.org/standards.html]

External links

* The standard, ISO 7185 Pascal web site [http://www.moorecad.com/standardpascal/]


Wikimedia Foundation. 2010.

Игры ⚽ Нужен реферат?

Look at other dictionaries:

  • Comparison of Pascal and Delphi — Programming language comparisons General comparison Basic syntax Basic instructions Arrays Associative arrays String operations …   Wikipedia

  • Comparison of Pascal and C — Programming language comparisons General comparison Basic syntax Basic instructions Arrays Associative arrays String operations …   Wikipedia

  • Comparison of Object Pascal and C — Programming language comparisons General comparison Basic syntax Basic instructions Arrays Associative arrays String operations …   Wikipedia

  • Comparison of Java and C++ — Programming language comparisons General comparison Basic syntax Basic instructions Arrays Associative arrays String operations …   Wikipedia

  • Pascal (programming language) — Pascal Paradigm(s) imperative, structured Appeared in 1970 Designed by Niklaus Wirth Typing discipline static, strong, safe …   Wikipedia

  • Comparison of programming languages (string functions) — String functions redirects here. For string functions in formal language theory, see String operations. Programming language comparisons General comparison Basic syntax Basic instructions Arrays …   Wikipedia

  • Comparison of programming languages (syntax) — Programming language comparisons General comparison Basic syntax Basic instructions Arrays Associative arrays String operations …   Wikipedia

  • Comparison of programming languages — Programming language comparisons General comparison Basic syntax Basic instructions Arrays Associative arrays String operations …   Wikipedia

  • Comparison of programming languages (basic instructions) — Programming language comparisons General comparison Basic syntax Basic instructions Arrays Associative arrays String operations …   Wikipedia

  • Comparison of C Sharp and Java — The correct title of this article is Comparison of C# and Java. The substitution or omission of the # sign is because of technical restrictions. Programming language comparisons General comparison Basic syntax Basic instructions …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”