gpt4 book ai didi

java - AbstractList 源代码中的奇怪代码行

转载 作者:行者123 更新时间:2023-12-02 04:26:01 25 4
gpt4 key购买 nike

有人可以解释一下 this 的使用方法吗?在AbstractList来源: AbstractList.this.remove(lastRet);

此行位于 remove()private class Itr implements Iterator<E>的方法内部类。

最佳答案

内部类(与静态嵌套类相对)始终与周围类的实例关联。

由于它们是周围类的成员,因此它们可以访问其所有成员,无论是私有(private)成员还是公共(public)成员。为了访问周围类的成员,特别是当成员名称可能不明确时,您需要访问周围类实例的“this”。

使用的语法是带有.this的周围类的名称。这正是您在示例中看到的。 AbstractList 是周围类,AbstractList.this 是与 Itr 当前实例关联的周围类的实例。

关于java - AbstractList 源代码中的奇怪代码行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32154382/

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