我一直在用 JDT 实现一个 Java 解析器,当它的节点类型是VariableDeclarationFragment时,我不知道如何获取变量类型。
我发现只有在涉及到VariableDeclaration时如何获取变量类型
我的代码如下。
public boolean visit(VariableDeclarationFragment node) {
SimpleName name = node.getName();
System.out.println("Declaration of '" + name + "' of type '??');
return false; // do not continue
}
谁能帮我?