String s1 = "String1";
System.out.println(s1.hashCode()); // return an integer i1
Field field = String.class.getDeclaredField("value");
field.setAccessible(true);
char[] value = (char[])field.get(s1);
value[0] = 'J';
value[1] = 'a';
value[2] = 'v';
value[3] = 'a';
value[4] = '1';
System.out.println(s1.hashCode()); // return same value of integer i1
Here even after I changed the characters with the help of reflection, same hash code value is mainatained.
Is there anything I need to know here?
A
String
is meant to be immutable. As such, there is no point having to recalculate the hashcode. It is cached internally in a field calledhash
of typeint
.String#hashCode()
is implemented as (Oracle JDK7)where
hash
initially has a value of0
. It will only be calculated the first time the method is called.As stated in the comments, using reflection breaks the immutability of the object.