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.
在泛型中,我们不应该创建泛型类型的数组。但是,这种类型的泛型数组是受支持的。
List<?> list[] = {};
为什么这不是一个错误/为什么支持它?
List该声明定义了一个包含未知类型的空对象数组。
List