Does Delphi's static keyword have any point in native-only code? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T20:23:13Z http://stackoverflow.com/feeds/question/1142548 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1142548/does-delphis-static-keyword-have-any-point-in-native-only-code 2 Does Delphi's static keyword have any point in native-only code? MikeJ-UK 2009-07-17T10:41:40Z 2009-07-17T20:20:52Z <p>My understanding is that the <code>static</code> keyword was introduced for compatibility with .NET (along with <code>strict</code>)</p> <pre><code>class TExample class procedure First; class procedure Second; static; </code></pre> <p>The differences between procedures <code>First</code> and <code>Second</code> are :-</p> <ol> <li><code>First</code> can be overridden in a descendant class</li> <li><code>First</code> passes an implicit self parameter referencing the <code>TExample</code> class.</li> </ol> <p>Class procedure <code>Second</code> cannot be overridden and passes no parameters and is thus .NET compatible. So is there any point in using the <code>static</code> keyword in native-only code now that there is a divergence between Delphi &amp; Prism syntax?</p> http://stackoverflow.com/questions/1142548/does-delphis-static-keyword-have-any-point-in-native-only-code/1142590#1142590 1 Answer by Tobias Langner for Does Delphi's static keyword have any point in native-only code? Tobias Langner 2009-07-17T10:59:12Z 2009-07-17T10:59:12Z <p>with static, it is a little bit faster. There's one <code>add esp, -8</code> in method First which is not there in Second.</p> <pre><code>program staticTest; {$APPTYPE CONSOLE} uses SysUtils; type TExample=class class procedure First; class procedure Second; static; end; { TExample } class procedure TExample.First; var i : Integer; begin i:=61374; end; class procedure TExample.Second; var I : Integer; begin i:=44510; end; begin { TODO -oUser -cConsole Main : Hier Code einfügen } TExample.First; TExample.Second; end. </code></pre> <p>First:</p> <pre><code>staticTest.dpr.20: begin 00408474 55 push ebp 00408475 8BEC mov ebp,esp 00408477 83C4F8 add esp,-$08 ;This is the line I mentioned 0040847A 8945FC mov [ebp-$04],eax staticTest.dpr.21: i:=61374; 0040847D C745F8BEEF0000 mov [ebp-$08],$0000efbe staticTest.dpr.22: end; 00408484 59 pop ecx 00408485 59 pop ecx 00408486 5D pop ebp 00408487 C3 ret </code></pre> <p>Second:</p> <pre><code>staticTest.dpr.27: begin 00408488 55 push ebp 00408489 8BEC mov ebp,esp 0040848B 51 push ecx staticTest.dpr.28: i:=44510; 0040848C C745FCDEAD0000 mov [ebp-$04],$0000adde staticTest.dpr.29: end; 00408493 59 pop ecx 00408494 5D pop ebp 00408495 C3 ret 00408496 8BC0 mov eax,eax </code></pre> <p>In short - I see no reason.</p> http://stackoverflow.com/questions/1142548/does-delphis-static-keyword-have-any-point-in-native-only-code/1142689#1142689 9 Answer by Moritz Beutel for Does Delphi's static keyword have any point in native-only code? Moritz Beutel 2009-07-17T11:23:49Z 2009-07-17T11:23:49Z <p>Static class methods have no hidden class reference argument. Because of this, they are assignment compatible with plain old function pointers, and can therefore be used for interaction with the Windows API and other C APIs. Example:</p> <pre><code>type TForm = class private class function NonStaticWndProc (wnd: HWND; Message: Cardinal; wParam: WPARAM; lParam: LPARAM): LRESULT; class function StaticWndProc (wnd: HWND; Message: Cardinal; wParam: WPARAM; lParam: LPARAM): LRESULT; static; procedure RegisterClass; end; procedure TForm.RegisterClass; type TWndProc = function (wnd: HWND; Message: Cardinal; wParam: WPARAM; lParam: LPARAM): LRESULT; var WP: TWndProc; WindowClass: WNDCLASS; begin //WP := NonStaticWndProc; // doesn't work WP := StaticWndProc; // works // ... TWndProc (WindowClass.lpfnWndProc) := WP; Windows.RegisterClass (WindowClass); end; </code></pre> <p>(Of course, you could have used a global function instead, but other than global functions, static class functions have a clear association with a class.)</p>