Posted by Will Renner on November 02, 19100 at 17:45:50:
In Reply to: hashtable in java posted by tagemouati karim on November 02, 19100 at 17:34:32:
: I don't understand the meaning of :
: load factor=.75f
: what does .75f represents
.75f is another way of writing 0.75 for Java.
The "f" specifies that the value is to be treated
as a "float."
But don't worry too much about the details of
Java's implementation of Hashtable except to
be able to use it. (and except for the growing
stuff which I've talked about in class)
Will