Java使用反射调用类的main()方法
我需要使用反射从另一个主方法调用 Java 类的主方法。
必须使用反射,以消除被调用的主类的编译时依赖。 直接的方法不会屈服,因为它只识别“公共”和“非静态”方法。 建议?
I need to call the main method of a Java class from another main method using reflection.
Usage of reflection is a must so as to remove compile time dependency of the main class being called.
Straightforward approach is not yielding as it recognizes only 'public' and 'non-static' method.
Suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不应该比调用任何其他函数更复杂:
但我真的没有看到它有很多用途,它为您带来的唯一好处是,只要您从不使用另一个函数,您就可以编译程序而无需链接另一个函数特定的代码路径,但如果这就是您需要的,我们就开始吧;)
Shouldn't be any more complicated than calling any other function:
But I don't really see many uses for that, the only thing it buys you is that you can compile the program without linking the other one as long as you never use that specific code path, but if that's what you need, here we go ;)