外观
禁止使用空静态代码块
空块语句,尽管技术上不是错误,通常是由于未完成的重构导致的。阅读代码时,它们可能会 gây ra 混乱。
该规则中不正确代码的示例
class Foo { static {} }
该规则中正确代码的示例
class Foo { static { // blocks with comments are allowed } } class Bar { static { doSomething(); } }