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.
Is it possible to search for all static blocks in the code of a java project using Eclipse IDE ?
public class ExampleClass { static { ... } }
搜索正则表达式static\s*\{
static\s*\{
即使大括号在后续行上,此表达式也有效,如您的示例所示。
细节:
*.java