我有一个代码,可以检测源中方法的调用的开始位置和长度,如下所示。
我需要将这些数据存储在ASTVisitor()之外,但是使用final int时出现错误。
如何在ASTVisitor()中存储值?
public void setPositionFinder(String methodName) throws JavaModelException
{
//findMethod(methodName);
IType type = this.javaProject.findType(this.className);
ICompilationUnit unit = type.getCompilationUnit();
ASTParser parser = ASTParser.newParser(AST.JLS3);
parser.setSource(unit);
parser.setResolveBindings(true);
CompilationUnit cunit = (CompilationUnit) parser.createAST(null);
//ASTNode root = parser.createAST(null);
final String name = this.newMethodName;
final int startPosition = -1;
final int length = -1;
cunit.accept(new ASTVisitor() {
public boolean visit(MethodInvocation methodInvocation)
{
String methodName = methodInvocation.getName().toString();
System.out.println(methodName);
if (methodName.equals(name))
{
// ERROR!
startPosition = methodInvocation.getStartPosition();
length = methodInvocation.getLength();
System.out.printf("startPosition %d - Length %d", startPosition, length);
}
return false;
}
});
}
最佳答案
将starPosition和length变量声明为该类的静态成员变量。然后,您可以从ASTVisitor内部类内部进行访问。最好将setPositionFinder
方法更改为静态方法,以便可以以静态方式调用它。
关于java - 如何在JDT/ASTVisitor()中存储值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14372095/