-
Enhancement
-
Resolution: Fixed
-
P3
-
7
-
b86
-
sparc
-
solaris_10
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2187726 | 6u21 | Alan Bateman | P3 | Resolved | Fixed | b01 |
java.lang.String::hashCode() should check for count == 0 to avoid repeated stores hash = 0.
Something like this:
public int hashCode() {
int h = hash;
- if (h == 0) {
+ if (h == 0 && count > 0) {
int off = offset;
char val[] = value;
int len = count;
for (int i = 0; i < len; i++) {
h = 31*h + val[off++];
}
hash = h;
}
return h;
}
Something like this:
public int hashCode() {
int h = hash;
- if (h == 0) {
+ if (h == 0 && count > 0) {
int off = offset;
char val[] = value;
int len = count;
for (int i = 0; i < len; i++) {
h = 31*h + val[off++];
}
hash = h;
}
return h;
}
- backported by
-
JDK-2187726 java.lang.String::hashCode() should check for count == 0 to avoid repeated stores hash = 0
-
- Resolved
-
- relates to
-
JDK-6932858 (str) Tune hashCode() of String
-
- Open
-