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 教程 > 嵌套类
另一方面,内部类不能有静态初始化块。其中不允许有静态内容。