A good start to writing the class is to initialize it with just the bare minimums. We need a storage array, so let's start there:

1public class Hashmap {
2  private Object[] _storage;
3
4  public Hashmap() {
5    this._storage = new Object[];
6  }
7}