gpt4 book ai didi

java - 为什么不能在 ArrayList 中使用 this 作为泛型?

转载 作者:行者123 更新时间:2023-12-01 07:05:29 24 4
gpt4 key购买 nike

我想知道为什么在 Java 的类中不能将其用作泛型。例如,假设我们有一个 class User 并且我们希望有一个 Userstatic ArrayList/。为什么我不能这样使用它:

class User{
private ArrayList<this> listOfUsers = new ArrayList<this>();
}

我真的想知道为什么我必须将 User 指定为通用,并且不能使用 this 进行引用。

最佳答案

this 不是类型。这是一个实例。

这样做

ArrayList<this> foo;

就像这样做

User someUser = new User();

ArrayList<someUser> foo;

关于java - 为什么不能在 ArrayList<this> 中使用 this 作为泛型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25694184/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com