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 新手
简而言之,内部/嵌套类不能有static成员,因为要访问它们,您需要嵌套类的实例,这会破坏静态性。
static