Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タイプジェネリックの配列であるプライベートメンバーがあり、コンストラクターには、この配列のサイズを設定するパラメーターがあります。プライベート配列をコンストラクターパラメーターで指定されたサイズに設定するにはどうすればよいですか?
これは私が持っているものです:
private T[] hashTable; public HashTable(int initSize){ // set hashTable size here }
このソリューションには、からのアップキャストが必要Object[]です。
Object[]
public class HashTable<T> { private T[] hashTable; public HashTable(int initSize){ // set hashTable size here hashTable = (T[]) new Object[initSize]; } }