Search Results

1
vote

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

I will expect it to use 6 bytes, but, due to alignment it ends up using 12 bytes Even if you write "TMyClass = class end;" the class will inherit from TObject w …
3
votes

Is There A Fast GetToken Routine For Delphi?

Your new function (the one with PChar) should declare "Delim" as Char and not as String. In your current implementation the compiler has to convert the PLine^ char …