gpt4 book ai didi

java - 如何获取函数中的变量?

转载 作者:行者123 更新时间:2023-12-02 08:34:31 28 4
gpt4 key购买 nike

我正在开发一个插件,在其中搜索特定方法。现在我想显示其中声明和使用的所有变量及其类型。我该怎么做?方法名称是 IMethod 类型。帮助

最佳答案

如果您有该 IMethod 的 CompilationUnit,则可以使用 ASTParserillustrated here ):

ASTParser parser = ASTParser.newParser(AST.JLS3);
parser.setSource(compilationUnit);
parser.setSourceRange(method.getSourceRange().getOffset(), method.getSourceRange().getLength());
parser.setResolveBindings(true);
CompilationUnit cu = (CompilationUnit)parser.createAST(null);
cu.accept(new ASTMethodVisitor());

然后您可以使用 ASTVisitor

cu.accept(new ASTVisitor() {
public boolean visit(SimpleName node) {
System.out.println(node); // print all simple names in compilation unit. in our example it would be A, i, j (class name, and then variables)
// filter the variables here
return true;
}
});

关于java - 如何获取函数中的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2294937/

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