Search Results

4
votes

What Simple Changes Made the Biggest Improvements to Your Delphi Programs

Make intelligent use of SetLength() for strings and arrays. Optimize initialization with FillChar or ZeroMemory. Local variables created on stack (e.g. record types) are faster than heap al …
7
votes

Optimizing Class Size in Delphi. Is there something like “packed classes”?

You could use a packed record as a field of your objects: type TMyRecord = packed record Member1 : integer; Member2 : boolean; Member3 : byte; end; TMyClass = cla …