2

Is it possible to search for all static blocks in the code of a java project using Eclipse IDE ?

public class ExampleClass {

  static 
  {
    ...
  }

}
4

1 回答 1

3

搜索正则表达式static\s*\{

即使大括号在后续行上,此表达式也有效,如您的示例所示。

细节:

  • 使用菜单项搜索>搜索...
  • 在出现的对话框中:
    • 包含文本的字段中,输入static\s*\{
    • 单击正则表达式复选框。
    • 文件名模式下,放置*.java.
于 2013-05-24T13:22:13.320 回答