Constructor Hashtable(int initialCapacity, float loadFactor)
Member of: java.util.Hashtable
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 private Map applications = new Hashtable(3, 2);
2 this.ejbFiles = new Hashtable(10, 1);
3 if( null == m_environment ) m_environment = new Hashtable( 5, 0.75f );
4 hList = new Hashtable(len, 1);
5 commandsByName = new Hashtable(len * 4 / 3 + 1, 0.75f);
6 Hashtable env = new Hashtable(5, 0.75f);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.