Delphi is a general-purpose language for rapid development of native Windows, OS X and iOS applications.
The name refers to the Delphi language (a modern evolution of Object Pascal) as well as its IDE, which is used to help edit and debug Delphi projects more efficiently. It is developed by Embarcadero, and is sold either as a standalone product or as part of RAD Studio, which includes other languages as well.
Delphi is an enhancement of Niklaus Wirth's language Pascal.
Delphi originated in 1995 at Borland, evolving from Turbo Pascal. It quickly became the language of choice for Windows programming. It is currently owned by Embarcadero, and is the second-largest Windows development platform after Microsoft's .NET.
Delphi is the father of C#, with the VCL being moved to the OS level and extended as the .NET framework. Delphi's Chief Architect Anders Hejlsberg is now Lead Architect for C# at Microsoft.
Among Delphi's strengths are:
- its easy learning curve,
- consistent language architecture,
- a blazingly fast compiler,
- great execution speed,
- modern language constructs,
- its extensive Visual Component Library (VCL),
- and the associated visual form designer.
Variants:
Some other Embarcadero products are or were released using the "Delphi" brand. A .NET variant called Delphi Prism (Delphi Prism is not a Delphi variant at all, Delphi.NET was. Prism is based on PascalScript codebase) exists that lives in MS Visual Studio and allows for cross platform development using Mono (also, CLR is not "cross-platform", but platform itself. It is off topic here, as it is distinct). It's mostly compatible with Delphi syntax, but uses very different libraries. The Embarcadero PHP product used to be labelled "Delphi" until recently, and there is an AS/400 version of Delphi too. Both the PHP product and Prism are integrated in the main Embarcadero studio project in the current version, Rad Studio XE2.
Delphi console "Hello world":
program Hello;
{$APPTYPE CONSOLE}
begin
Writeln('Hello, World');
end.
A minimalist GUI Delphi application
program GUIHello;
uses
Windows;
begin
MessageBox(0, 'Message', 'Hello, World', MB_OK);
end.
Resources:
Many of their profiles point to good resources concerning Delphi. There is also an aggregation of main blogs in the field at DelphiFeeds. Marco Cantu's books on Delphi programming provide another great resource.
Documentation
- Online Help for RAD Studio XE4
- Online Help for RAD Studio XE3
- Online Help for RAD Studio XE2
- Online Help for RAD Studio XE
- Online Help for RAD Studio 2010
See all questions around delphi here.
References
Tagging recommandation:
There are several version-specific tags. It is recommended to use the delphi tag together with the version-specific tag, e.g. delphi-xe4.