Why need to typecast ? Cant we use generics directly?
crx-hashtableconstruction-part-1
Vikas-G-141583313319037
(VIKAS GOGIA)
April 6, 2020, 7:42am
#1
public HashTable(int capacity){
this.bucketArray = (LinkedList[])new LinkedList[capacity];
}