vote up 1 vote down star

Is there a solution to use a final variable in a Java constructor? The problem, if I init. a final var. like:

private final String name = "a name";

then I cannot use it in the constructor, while java first runs the constructor an then the fields... Is there a solution to get in contact with the final var. in the constructor?

flag

I assume that you want to change the value on the constructor right ? – webclimber Mar 24 at 14:25
I'm voting to close because, from my understanding, it turns out this is not really a problem at all. What the OP is trying to do should work. – Outlaw Programmer Mar 24 at 15:02
The constructor implicitly executes the field initialisation immediately before calling the super constructor. – Tom Hawtin - tackline Mar 24 at 15:05

8 Answers

vote up 11 vote down check

I do not really understand your question. That

public class Test3 {
    private final String test = "test123";

    public Test3() {
        System.out.println("Test = "+test);
    }

    public static void main(String[] args) {
        Test3 t = new Test3();
    }
}

executes as follows:

$ javac Test3.java && java Test3
Test = test123
link|flag
vote up 4 vote down

Do the initialization in the constructor, e.g.,

private final String name;
private YourObj() {
    name = "a name";
}

Of course, if you actually know the value at variable declaration time, it makes more sense to make it a constant, e.g.,

private static final String NAME = "a name";
link|flag
vote up 2 vote down

In this case, you can mark the field as 'static' also.

link|flag
a way without a static field? – Tobiask Mar 24 at 14:23
@Tobiask: Why don't you want a static field? – sfossen Mar 24 at 14:25
It's immutable, so you might as well make it static. – Adam Jaskiewicz Mar 24 at 14:25
no, in a multiuser environment static var. aren´t the best way... – Tobiask Mar 24 at 15:45
It's immutable. There's no shared mutable state, thus no concurrency issues. You'd be right if it didn't have that final on it. – Adam Jaskiewicz Mar 24 at 18:17
vote up 1 vote down

In that case, you might as well make it static, too. And Java convention is to name such constants in ALL_CAPS.

link|flag
vote up 1 vote down
private static final String name = getName();

where getName() is a static function that gets you the name.

link|flag
Beware of this construct if getName() does anything other than return a constant. You can find the logic used by getName() may not have been initialized. – DJClayworth Mar 24 at 15:56
vote up 2 vote down

Marking it static, will allow you to use it in the constructor, but since you made it final, it can not be changed.

private static final String name = "a_name";

is is possible to use a static init block as well.

private static final String name;

static { name = "a_name"; }

If you are trying to modify the value in the constructor, then you can't assign a default value or you have to make it not final.

private String name = "a_name";
Foo( String name )
{
    this.name = name;
}

or

private final String name;

Foo( String name )
{
    if( s == null )
       this.name = "a_name";
    else
       this.name = name;
}
link|flag
vote up 0 vote down

I cannot use it in the constructor, while java first runs the constructor an then the fields...

This is not correct, fields are evaluated first, otherwise you couldn't access any default values of members in your constructors, since they would not be initialized. This does work:

public class A {
    protected int member = 1;
    public A() {
        System.out.println(member);
    }
}

The keyword final merely marks the member constant, it is treated as any other member otherwise.

EDIT: Are you trying to set the value in the constructor? That wouldn't work, since the member is immutable if defined as final.

link|flag
Technically it is the constructor that is (implicitly) executing the field initialisation logic. – Tom Hawtin - tackline Mar 24 at 15:06
Well, ok. The fields get evaluated first nonetheless. – soulmerge Mar 24 at 15:34
vote up 0 vote down

Another possiblity is to initialize the field in an instance initializer blocK:

public class Foo {
        final String bar;

        {
                System.out.println("initializing bar");
                bar = "created at " + System.currentTimeMillis();
        }

        public Foo() {
                System.out.println("in constructor. bar=" + bar);

        }

        public static void main(String[] args) {
                new Foo();
        }
}
link|flag

Your Answer

Get an OpenID
or

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