Reflection.Emit 的 Java 等效项
据我所知,Java 没有与 C# 的 Reflection.Emit
等价的东西。 Java 是否有提供类似功能的其他库? (与反射发射)有什么区别?
As far as I can tell, Java has no such equivalent of C#'s Reflection.Emit
stuff. Are there any additional libraries for Java that provide similar functionality? What are the differences (to reflection emit)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
字节码工程库 (BCEL)
The Byte Code Engineering Library (BCEL)
除了 Darin 的出色回答(+1)之外, ASM 也值得一看。
Besides Darin's excellent answer (+1), ASM is worth checking out too.