vote up 0 vote down star

Hello,

My parent class is a form(TParent) ,here's the code:

type
TChild = class(TParent)
private
  procedure Handle(sock:integer);static; //error
end;

implementation

The error is "STATIC can only be used on non-virtual methods"

Is there any possible way of doing this?

If not, can I make the Parent Class(TForm) static?

The TParent class is a form used for WSAAsyncSelect() and it's hidden(its not the main form).It's only used for the message loop.

flag

1 Answer

vote up 1 vote down check

try this :

type
TChild = class(TParent)
private
 class procedure Handle(sock:integer); static;
end;
link|flag
No,same error with both. – John Jul 16 at 8:45
sorry i forgot to put class before procedure , test it again , it should work – Adinochestva Jul 16 at 8:49
2  
export; should not be there – Lars Truijens Jul 16 at 8:56
Do you really need the "static" keyword here?. The procedure is already "static" in the C sense of the word by declaring it as a "class procedure". As I understand it, the "static" keyword was introduced a while back for compatibility with .NET and has the effect of disallowing references to variables declared outside the current procedure, and suppressing the implicit "Self" parameter. The "static" keyword seems to introduce unnecessary restrictions in native code. – MikeJ-UK Jul 16 at 14:41
Yes, Mike, static is important. Delphi's class methods have a "Self" parameter, just like ordinary methods. It holds the class reference, such as TChild, in this example. It's not the same as C++'s static member functions; you need Delphi's static for that. Static class methods cannot be virtual, but they can be used in situations that would ordinarily require standalone procedures. However, we really have no idea whether static is required here because we haven't been told anything about what the Handle function is supposed to do. – Rob Kennedy Jul 16 at 16:22
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.