vote up 1 vote down star

Hi,

Could anyone please tell me what is the meaning of the following line in context of Java:

final variable can still be manipulated unless it's immutable

As far as I know, by declaring any variable as final, you can't change it again, then what they mean with the word immutable in above line?

flag

5 Answers

vote up 11 vote down check

It means that if your final variable is a reference type (i.e. not a primitive like int), then it's only the reference that cannot be changed. It cannot be made to refer to a different object, but the fields of the object it refers to can still be changed, if the class allows it. For example:

final StringBuffer s = new StringBuffer();

The content of the StringBuffer can still be changed arbitrarily:

s.append("something");

But you cannot say:

s = null;

or

s = anotherBuffer;

On the other hand:

final String s = "";

Strings are immutable - there simply isn't any method that would enable you to change a String (unless you use Reflection - and go to hell).

link|flag
vote up 4 vote down

If you have a final reference to a Java object you can still manipulate it but cannot change its reference. For instance this code is perfectly legal:

import javax.swing.JLabel;

class Test1 {
    private final static JLabel l = new JLabel("Old text");
    public static void main(String[] args) {
    	System.err.println(l.getText());
    	l.setText("New Text");
    	System.err.println(l.getText());
    }
}

But you can't say:

l = new JLabel("Newest Text");

After the first assignment to l. Note that you can do this though:

import javax.swing.JLabel;

class Test1 {
    public static void main(String[] args) {
    	final JLabel l;
    	String s = getArbitaryString(); // Assume this method returns a string
    	l = new JLabel(s);
    	System.err.println(l.getText());
    }
}

This can be done because when l is declared it is not assigned to anything not even null. So you are allowed to assign something to it one time only.

Same thing goes for primitives. You can assign a value to it like this:

class Test1 {
    public static void main(String[] args) {
    	final int i;
    	i = 2;
    }
}

But now you cannot manipulate it further since the only thing you can do to primitive types is to assign values to them.

link|flag
vote up 0 vote down

You can still change a 'final' variable using Reflection.

link|flag
You can but that's not what he meant. – Savvas Dalkitsis Aug 8 at 21:20
Actually, you can't. You would get a java.lang.IllegalAccessException. – Aviad Ben Dov Aug 8 at 21:45
Actually, you can. Try it. – Javamann Aug 10 at 22:42
vote up 1 vote down

As others have said, it means that you can manipulate the object the variable points at, but you cannot change the reference (i.e. assign another object to the variable).

Objects that are mutable by design, such as a List can be changed (you can add elements to them) whereas if you have an immutable object such as a String or Integer you won't be able to change it (all the operations the class String supports return a new instance, and don't modify the actual object).

link|flag
vote up 1 vote down

You cannot change what object or value a final variable refers to. You can only assign a final variable once.

This has no effect on whether you can change the state of the object. The object itself can still be manipulated unless it is coded in such a way that this manipulation is forbidden. An immutable object is an object whose state cannot change.

link|flag

Your Answer

Get an OpenID
or

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