I wonder, In Java How can we create a constant object (but not-reference nor immutable since immutability is a feature to all objects of a class) ?
First:
final MyClass c = new MyClass();
creates a constant reference to non-constant object hence I can do:
c.setData(100);
Second:
String class is a class that all its instances should be constant (a.k.a immutable object). I need to have a kind that I can create from a constant objects and non-constanct objects.
In Other words, How to grant the constant-ness to some objects of a class and remove it from other objects. (without the need to wrap this object inside any wrapper).
constkeyword in Java and you've already found out thatfinaldoesn't do what you want.. Short: There doesn't exist anything in Java correlating to const correctness in C++. – Voo Dec 7 '11 at 0:28-1??? – Muhammad Dec 7 '11 at 10:18