JDK-4089896 : Hashtable.put() calls itself after a rehash()
  • Type: Enhancement
  • Component: core-libs
  • Sub-Component: java.util:collections
  • Affected Version: 3.0,1.1.2,1.1.4,1.1.5
  • Priority: P3
  • Status: Closed
  • Resolution: Fixed
  • OS: generic,solaris_2.6,windows_nt
  • CPU: generic,x86,sparc
  • Submitted: 1997-10-30
  • Updated: 2021-03-03
  • Resolved: 1999-01-15
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
1.2.0 1.2beta3Fixed
Related Reports
Duplicate :  
Description

Name: rm29839			Date: 10/30/97


1. Write a subclass of Hashtable which overrides
put() and in that put() method, call super.put().

2. 

import java.util.*;

public class BrokenHash extends Hashtable {

  public BrokenHash() {}

  public Object put(Object key, Object value) {
    String myValue = "X" + String.valueOf(value);
    return super.put(key, myValue);
  }

  private static boolean rehashed = false;

  public void rehash() {
    rehashed = true;
    super.rehash();
  }

  public static void main(String[] argv) {
    BrokenHash h = new BrokenHash();
    while (!rehashed) {
      h.put(new Object(), new Object());
    }

    Enumeration values = h.elements();
    while (values.hasMoreElements()) {
      String v = (String)values.nextElement();
      if (v.startsWith("XX")) System.out.println(v + " <<< BUG");
    }
  }
}

3.
bash$ javac BrokenHash.java
bash$ java BrokenHash
XXjava.lang.Object@1ecb10 <<< BUG
bash$

4. None.

5. The problem is tat Hashtable.put() calls itself
if it has to rehash(). Which ends up calling back
into the subclasses version of put(). Which is not
what you want.
(Review ID: 14947)
======================================================================

Comments
CONVERTED DATA BugTraq+ Release Management Values COMMIT TO FIX: generic FIXED IN: 1.2beta3 INTEGRATED IN: 1.2beta3
14-06-2004

WORK AROUND Name: rm29839 Date: 10/30/97 *** Hashtable.java.orig Mon Oct 06 15:09:13 1997 --- Hashtable.java Mon Oct 06 15:08:57 1997 *************** *** 345,351 **** if (count >= threshold) { // Rehash the table if the threshold is exceeded rehash(); ! return put(key, value); } // Creates the new entry. --- 345,352 ---- if (count >= threshold) { // Rehash the table if the threshold is exceeded rehash(); ! tab = table; ! index = (hash & 0x7FFFFFFF) % tab.length; } // Creates the new entry. ======================================================================
11-06-2004

EVALUATION I don't consider this a bug per se, but rather an RFE; Hashtable makes no commitments as to how it implements its operations in terms of its other operations. That said, I think that the suggested implementation is cleaner and better then the current implementation and I'll happily changed it. This sort of problem can be avoided by using delegation rather than subclassing. joshua.bloch@Eng 1997-11-09
09-11-1997