Share via


HashTable Class

Methods | This Package | All Packages

Implements a hash table data structure, which stores key-value pairs.

package com.ms.wfc.util

public class HashTable
implements
Cloneable****

Remarks

A lookup based on key values is extremely fast, but there is the added overhead of maintaining a complete hash table. For a lightweight, dynamic array implementation, see the List class.