Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why float loadfactor affect to a HashSet? what is the significant of it?

share|improve this question

1 Answer

You need to read the explanation included in the JavaDoc for HashMap

The load factor is a measure of how full the hash table is allowed to get before its capacity is automatically increased.

http://download.oracle.com/javase/6/docs/api/java/util/HashMap.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.