I wonder if it's reliable to use a construction like:

private static final Map<String, String> engMessages;
private static final Map<String, String> rusMessages;

static {
    engMessages = new HashMap<String, String> () {{
        put ("msgname", "value");
    }};
    rusMessages = new HashMap<String, String> () {{
        put ("msgname", "значение");
    }};
}

private static Map<String, String> msgSource;

static {
    msgSource = engMessages;
}

public static String msg (String msgName) {
    return msgSource.get (msgName);
}

Is there a possibility that I'll get NullPointerException because msgSource initialization block will be executed before the block which initializes engMessages?

(about why don't I do msgSource initialization at the end of upper init. block: just the matter of taste; I'll do so if the described construction is unreliable)

link|improve this question

73% accept rate
I think there are much better ways to do internationalization than this. I don't have the expertise to recommend what those ways are, though, but I think it has to do with externalizing the strings outside of the source code (to make it easier for non-programmer translators to work on) and using various mechanism already in place designed for internationalization, as opposed to managing your own maps like this. – polygenelubricants Jun 12 '10 at 10:14
@polygenelubricants: partially agreed. but I have 3 reasons: 1) it's the simplest/fastest way for me now; 2) it's not a real application, I'm doing it as a part of my degree work; 3) it's still possible to parse property files in static initializers if it would be necessary (but it wouldn't). – Roman Jun 12 '10 at 10:19
feedback

1 Answer

up vote 1 down vote accepted

Yes, static initializer blocks are guaranteed to execute in textual order.

From the JLS, section 8.7:

The static initializers and class variable initializers are executed in textual order.

Use of class variables whose declarations appear textually after the use is sometimes restricted, even though these class variables are in scope. See §8.3.2.3 for the precise rules governing forward reference to class variables.

Personally though, I'd put all the variable declarations at the start, and then a single static initializer block. I consider that to be a lot easier to follow.

link|improve this answer
Thanks for the fast answer! – Roman Jun 12 '10 at 9:59
feedback

Your Answer

 
or
required, but never shown

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