Is it in Delphi (Win32) possible to declare a whole class (not only a function of the class) as static?
|
|
I assume you mean static classes like in .net (and not "static" as in traditional Delphi/Native) - and the answer to that is no. |
||||||
|
|
|
I am not quite sure what you mean by a "static class". You can declare a class, that has only class methods, so these methods can be called without instantiating the class.
Is that what you want? |
||
|
|
|
|
Not natively. Depending on what you need it for, if for the purposes of your code, in some use cases you could replace it with a Singleton Pattern object. For walkthrough on implementing this I'd recommend this guide which, covers almost any version of delphi, but if you're using Delphi 2010 you could also use the new class Constructors/Destructors for improved results. |
||
|
|
|
|
You can also create a new unit called uDG_Utils for example, define a class, define a global variable for that class and in the initialization and finalization section you manage the class constructor and destructor. Now all you need to do is call it like mySuperDuperClass.SuperMethod... |
||
|
|
|
|
You could create a class that contains nothing but static methods. If you have to maintain some sort of state, then the state variables should be passed as var parameters. There is no way to "properly" access static variables other than having a set of global variables in the implementation section of the class OUTSIDE the scope of the class, for example:
|
||
|
|
|
|
(Yes, I know this thread is old, but thought I'd post this for posterity.) It's been pointed out that class functions and class procedures implement static methods. But I'll add that the next notable behavior of a static class (vs a Delphi class) is that a static class cannot be instantiated. Delphi classes get a public default (parameterless) constructor if you do not specify one, so any class can be instantiated. If you declare one or more constructors explicitly, this constructor is not provided. You can remove all constructors by declaring a constructor in the private or protected section of your class. This removes your constructor from the scope of the consumer. Now there is only one constructor, it is not visible and the class cannot be instantiated. Example:
If you have one of the newer versions of Delphi, you may also consider sealing the class just to be a bit more proper. Descendant classes COULD be instantiated if your constructor is protected rather than private. |
||
|
