有没有办法在不完全编译的情况下为 CtCodeSnippetStatement 构建 CtElement?我有一些片段我希望能够扫描和进一步处理,然后再将它们插入到具有其余依赖项(片段可能引用的方法/全局变量)的类中。
问问题
53 次
1 回答
0
如果您通过“没有完全编译”表示您不希望 Spoon 解析编译片段中的类型引用,那么您可以尝试:
Environment env = new StandardEnvironment();
env.setInputClassLoader(new URLClassLoader(new URL[]{}, null));
Factory factory = new FactoryImpl(new DefaultCoreFactory(),env);
CtCodeSnippetStatement statement = factory.createCodeSnippetStatement("pkg.MyClass myClass = new pkg.MyClass();");
CtStatement compiledStatement = statement.compile();
这里使用了一个没有输入资源的环境,它将阻止系统类加载器访问类路径。中的元素compiledStatement
将返回null
with getDeclaration
,并返回null
withgetTypeDeclaration
以访问用户定义的类。
于 2021-03-16T13:13:17.777 回答