Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6921374

java.lang.String::hashCode() should check for count == 0 to avoid repeated stores hash = 0

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Fixed
    • Icon: P3 P3
    • 7
    • 7
    • core-libs
    • b86
    • sparc
    • solaris_10

        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;
            }

              alanb Alan Bateman
              kvn Vladimir Kozlov
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: