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.
我正在尝试构建一个已初始化的大小为 10 的表。
private LinkedList<MapEntry<K, V>>[] table;
我也试过table = new LinkedList<MapEntry<K, V>>[];了table = new LinkedList<MapEntry<K, V>>()[];
table = new LinkedList<MapEntry<K, V>>[];
table = new LinkedList<MapEntry<K, V>>()[];
这些都不起作用,我需要帮助。提前致谢!
尝试这个 -
table = (LinkedList<Map.Entry<K, V>>[])new LinkedList[10];
如需更多理解,请查看旧问题
如何在 Java 中创建一个泛型数组?