Tag: delphi
This article will compare the floating point performance based on the following piece of Pascal code, between the Delphi 2007 and XE3 to see the difference at different configurations …
Delphi is a handy tool to develop the COM (Component Object Model) DLL. A *_TLB.pas will be generated by the compiler automatically from the *.tlb (Type Library File) which …
The inline keyword in Delphi is a powerful optimization feature that instructs the compiler to replace a function or procedure call with its actual code, eliminating the overhead of …
Delphi has moved to the era of Unicode. From Delphi 2009, the string type is in fact a UnicodeString instead of AnsiString. How is this going to affect the project migration? I have a ongoing …
I have asked a question in stackoverflow.com and it brings some discussions. The question is about the code efficiency generated by Delphi compilers and I’ve tried the following simple example …