code:

class Base<T,U> where T:Base<T,U>,new()  where U :class
{
    protected static U _val = null;
    internal static void ShowValue()
    {
        if(_val == null)new T(); //Without this line, it won't work as expected
        Console.WriteLine (_val);
    }
    internal static void Virtual()
    {
        Console.WriteLine ("Base");
    }
}
class Deriv :Base<Deriv,string>
{
    static Deriv()
    {
        _val = "some string value";
    }
    internal static new void Virtual ()
    {
        Console.WriteLine ("Deriv");
    }
}
 public static void Main (string[] args)
{
    Deriv.ShowValue();            
    Deriv.Virtual();
}

Thanks to the generics of .NET, I can create a bunch of specific classes reusing generic static methods defined in the generic base class. It can mimic inheritance polymorphism to some extent. But in order to initialize different version of static fields, I've to use static constructors. Unfortunately, we can't call them directly, therefore, we have to figure out a way to trigger it's invocation. The example given above showed a way. But I don't like either the instantiation,or the reflection approach. We also can't make a constraint on a static method of a generic parameter. So, I'd like to ask, if there is another way to do this kind of job!

Thanks beforehand!

~~~~~~~~~~~~~~~~

Some Conclusion (Maybe a little early):

It seems there is no workaround to deal with this kind of situation. I have to instantiate a subclass or use reflection. Considering the .cctors need merely be called once, I'm in favor of the reflection approach, because in some case, a new() constraint is just not a choice - like you're not supposed to expose the parameterless ctor to user.

After conducting further experiment, I find out that the .cctors may be called multi-times but only the first invocation will affect the setting of static fields. That's weird, but a good weirdness!

    class MyClass 
    {
        static int _val = 0;
        static MyClass()
        {
            _val++;
            Console.WriteLine (_val);
        }
    }
    public static void Main (string[] args)
    {
        ConstructorInfo ci = typeof(MyClass).TypeInitializer;
        ci.Invoke(new object[0]);
        ci.Invoke(new object[0]);
        ci.Invoke(new object[0]);
    }
//result:
//1
//1
//1
//1
link|improve this question

33% accept rate
PS:I know it can't be called directly, and I know the instantiation and method reference approach. I'm just looking for a workaround. As the given example showed, it's only a generic parameter, its static methods can't be referenced. I'd like to know apart from the instantiation way is there another way, no instance involved. – Need4Steed Aug 2 '11 at 6:31
feedback

4 Answers

I would strongly advise you to rethink your design. Attempting to use this sort of workaround for "static inheritance" is fighting against some of the core designs of .NET.

It's unclear what bigger problem you're trying to solve, but trying "clever" code like this to simulate inheritance will lead to code which is very hard to maintain and diagnose in the longer term.

Without actually using a member of Deriv (or creating an instance of it), you basically won't trigger the static constructor. It's important to understand that Deriv.ShowValue() is basically converted into a call to

Base<Deriv, string>.ShowValue();

... so you're not actually calling anything on Deriv. Your calling code would actually be clearer if it were written that way.

link|improve this answer
:I just wanna write less code. In c++ I can do this sort of thing just fine. My design is kinda like a object pool,with no user side instantiation. Use this approach I like implement pool management all in base class with help of generic parameter. – Need4Steed Aug 2 '11 at 6:44
1  
@Need4Steed: Don't try to treat C# like C++. They're different languages, with different idioms - and generics are very different from templates, under the hood. If you want polymorphism, you should be looking at creating instances instead, even if you only create one instance of each class. – Jon Skeet Aug 2 '11 at 7:29
It's already to big to change, I have to stick with it. Besides, I still think my design needs less code than the alternatives. – Need4Steed Aug 2 '11 at 9:02
@Need4Steed: Then I'm afraid I can't help you. If you fight against the .NET type system like this you are going to get burned. Good luck, but I think you're making a mistake by not revisiting this decision. Unless this is a really temporary tool, remember that your code is likely to spend much longer being maintained than being originally written... – Jon Skeet Aug 2 '11 at 9:09
Don't scare me, I'm not that combustible :) I just think, if the language provided some cool feature, with which you can twist things, then what keeps you from using it? I have a bunch of sibling classes they all supposed to keep their own object pools as static fields, how can I create such kind of things in another way, yet with no repeat of code? Any pragmatic suggestions? I'm all ears. – Need4Steed Aug 2 '11 at 10:28
show 2 more comments
feedback

You have no control of when the static constuctor will execute, but what is guaranteed is that it will run before accessing any static property or method and before instantiation.

There is really no reason to want the static constructor to execute at an earlier point. If you are not using anything from the class but you want the code in the static constructor to run, then something is wrong in your design.

link|improve this answer
feedback

Static constructors are automatically, only once. You cannot call them yourself.

An example from here:

public class Bus
{
    // Static constructor:
    static Bus()
    {
        System.Console.WriteLine("The static constructor invoked.");
    }    

    public static void Drive()
    {
        System.Console.WriteLine("The Drive method invoked.");
    }
}

class TestBus
{
    static void Main()
    {
        Bus.Drive();
    }
}

output:

The static constructor invoked.

The Drive method invoked.
link|improve this answer
feedback

I direct you to the MSDN article on Static Constructors and about 10% down the page:

A static constructor is called automatically to initialize the class before the first instance is created or any static members are referenced.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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