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.
我发现阅读这个问题非常有用:Java 内部类和静态嵌套类,但找不到来自 Java 的任何示例。您能否为我提供使用 JDK、JRE 中的这些类的真实示例?
嵌套类(静态内部)没有对外部上下文的引用。Map#Entry 是这种嵌套类的一个示例——它仅包含键、值对属性,并且根据定义无法访问外部 Map 实现。