vote up 13 vote down star

I've been working with providers a fair bit lately and I came across an interesting situation where I wanted to have an abstract class that had an abstract static method. I read a few posts on the topic and it sort of made sense, but I was wondering if someone here might be able to offer a nice clear explanation?

flag

Please leave these open to allow to future improvements. – Mark Biek Sep 23 '08 at 17:49

9 Answers

vote up 26 vote down check

Static methods are not instantiated as such, they're just available without an object reference.

A call to a static method is done through the class name, not through an object reference, and the IL code to call it will call the abstract method through the name of the class that defined it, not necessarily the name of the class you used.

Let me show an example.

With the following code:

public class A
{
public static void Test()
{
}
}

public class B : A
{
}

If you call B.Test, like this:

class Program
{
static void Main(string[] args)
{
B.Test();
}
}

Then the actual code inside the Main method is as follows:

.entrypoint
.maxstack 8
L0000: nop
L0001: call void ConsoleApplication1.A::Test()
L0006: nop
L0007: ret

As you can see, the call is made to A.Test, because it was the A class that defined it, and not to B.Test, even though you can write the code that way.

If you had class types, like in Delphi, where you can make a variable referring to a type and not an object, you would have more use for virtual and thus abstract static methods (and also constructors), but they aren't available and thus static calls are non-virtual in .NET.

I realize that the IL designers could allow the code to be compiled to call B.Test, and resolve the call at runtime, but it still wouldn't be virtual, as you would still have to write some kind of class name there.

Virtual methods, and thus abstract ones, are only useful when you're using a variable which, at runtime, can contain many different types of objects, and you thus want to call the right method for the current object you have in the variable. With static methods you need to go through a class name anyway, so the exact method to call is known at compile time because it can't and won't change.

Thus, virtual/abstract static methods are not available in .NET.

link|flag
vote up 0 vote down

The abstract methods are implicitly virtual. Static methods require instance, but abstract methods do not have an instance. So, you can have a static method in an abstract class, it just cannot be static abstract (or abstract static).

link|flag
vote up 2 vote down

We actually override static methods (in delphi), it's a bit ugly, but it works just fine for our needs.

We use it so the classes can have a list of their available objects without the class instance, for example, we have a method that looks like this:

class function AvailableObjects: string; override;
begin
  Result := 'Object1, Object2';
end;

It's ugly but necessary, this way we can instantiate just what is needed, instead of having all the classes instantianted just to search for the available objects.

This was a simple example, but the application itself is a client-server application which has all the classes available in just one server, and multiple different clients which might not need everything the server has and will never need an object instance.

So this is much easier to maintain than having one different server application for each client.

Hope the example was clear.

link|flag
vote up 2 vote down

Another respondent (McDowell) said that polymorphism only works for object instances. That should be qualified; there are languages that do treat classes as instances of a "Class" or "Metaclass" type. These languages do support polymorphism for both instance and class (static) methods.

C#, like Java and C++ before it, is not such a language; the static keyword is used explicitly to denote that the method is statically-bound rather than dynamic/virtual.

link|flag
vote up -1 vote down

My opinionated answer is because C# and java don't have proper OO

This works fine in ruby and probably python, where everything actually is an object

link|flag
vote up -1 vote down

@chook and @lassevk thanks for your explanations. They definately clear things up

link|flag
vote up 5 vote down

To add to the previous explanations, static method calls are bound to a specific method at compile-time, which rather rules out polymorphic behavior.

link|flag
vote up 14 vote down

Static methods cannot be inherited or overridden, and that is why they can't be abstract. Since static methods are defined on the type, not the instance, of a class, they must be called explicitly on that type. So when you want to call a method on a child class, you need to use its name to call it. This makes inheritance irrelevant.

Assume you could, for a moment, inherit static methods. Imagine this scenario:

public static class Base
{
public static virtual int GetNumber() { return 5; }
}

public static class Child1 : Base
{
public static override int GetNumber() { return 1; }
}

public static class Child2 : Base
{
public static override int GetNumber() { return 2; }
}

If you call Base.GetNumber(), which method would be called? Which value returned? Its pretty easy to see that without creating instances of objects, inheritance is rather hard. Abstract methods without inheritance are just methods that don't have a body, so can't be called.

link|flag
Given your scenario i would say Base.GetNumber() would return 5; Child1.GetNumber() returns 1; Child2.GetNumber() returns 2; Can you prove me wrong, to help me understand your reasoning? Thank you – Luis Filipe Oct 2 '08 at 16:30
The face that you think Base.GetNumber() returns 5, means that you already understand what is going on. By returning the base value, there is no inheritance going on. – Ch00k Oct 4 '08 at 22:54
Why in the world would Base.GetNumber() return anything else but 5? It's a method in the base class - there's only 1 option there. – Artem Russakovskii Jun 17 at 7:33
vote up -2 vote down

Without my C# books nearby...in my understanding of static they are instantiated before the class is created - therefore you can use them in the constructor.

Since an abstract method is that - abstract - you can't create it before the class is created since there is nothing to create.

I do understand where you are coming from though.

link|flag

Your Answer

Get an OpenID
or

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