0

使用 Factory 创建类后,如何漂亮地打印生成的类源代码?

4

1 回答 1

0

您可以toString()在 AST 节点上调用:

CtClass c = getFactory().Core().createClass();
// fill c with stuff

System.out.println(c.toString())
于 2020-09-21T13:03:24.780 回答