What is the real difference between a C# static constructor and a Java static block?

They both must be parameterless. They are both called only once, when the related class is first used.

Am I missing something, or are they the same thing, just with different names?

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

They are equivalent, except that a C# class can only have one static constructor (plus static field initializers).

Also, in C#, a static constructor will apply the beforefieldinit flag.

link|improve this answer
Obviously Java is not going to apply any beforefieldinit flags, as it isn't compiled to MSIL. – Joren Mar 17 '10 at 19:38
@Joren: I realize that. However, it is a difference in the behavior of the two features. – SLaks Mar 17 '10 at 19:39
1  
Yes, but my (not so explicit, I admit) point was: It might be more useful to explain the difference in terms of the code semantics (i.e. order of field initialization and the static constructor) than in terms of implementation details. (Especially when it's details that don't even have any meaning for one of the two languages being considered.) – Joren Mar 17 '10 at 19:43
Would you both agree that if one was converting Java code to C#, that there would exist no risk of losing functionality? – Mackenzie Mar 17 '10 at 19:44
@Mackenzie: As long as the code doesn't have side effects that must be run lazily (or not), it should be equivalent. – SLaks Mar 17 '10 at 19:48
show 3 more comments
feedback

They are not.

In C#, there blocks can only hold constructors. In java you are able to execute statements.

link|improve this answer
feedback

They look the same, the following example shows, that c# static constructor works the same as static block in java

protected Singleton()
{
    Console.WriteLine("Singleton constructor");
}

    private static readonly Singleton INSTANCE;

    static Singleton() {
    try {
       INSTANCE = new Singleton();
    }
    catch(Exception e) {
        throw new Exception();
    }
    }
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.