gpt4 book ai didi

java - 如何查找带有尾随注释的所有字段

转载 作者:行者123 更新时间:2023-12-03 04:23:33 25 4
gpt4 key购买 nike

我使用 IntelliJ IDEA,它有一个名为结构搜索的漂亮功能。我想用它来查找所有类中末尾有注释的所有字段,如下所示:

class Thing {
double x; // arbitrary comment (any text goes here)
}

到目前为止,我尝试过的任何方法似乎都不起作用。

最佳答案

尝试以下结构搜索字符串:

@Modifier("Instance") $FieldType$ $Field$ = $Init$; // $Comment$
  • Set Occurrences Count to 1, 1 for all variables except $Init$, to 0, 1 (optional).

如果您还需要静态字段:

$FieldType$ $Field$ = $Init$; // $Comment$
  • Set Occurrences Count to 1, 1 for all variables except $Init$, to 0, 1 (optional).
  • Set Field's Script Constraint to Field instanceof com.intellij.psi.PsiField (can be defined on Complete Match too, shouldn't matter).

关于java - 如何查找带有尾随注释的所有字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49328745/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com