所以我有以下代码
CompilationUnit cu = StaticJavaParser.parse(new File("./src/Foo.java"));
ClassOrInterfaceDeclaration coid = cu.getClassByName("Foo").get();
List<FieldDeclaration> implementedFields = coid.getFields();
Type type = implementedFields.get(1).getVariables().get(0).getType();
我查询的变量的类型是非基本类型,如:bar,但它是从另一个包导入的,因此完全限定名为otherpackage.bar
如何使用javaparser获得非原语类型的完全限定名?
暂无答案!
目前还没有任何答案,快来回答吧!