如何检测 JVM 中是否打开了断言?
我希望 Java 程序输出的第一行打印断言是否打开。我该怎么做?
编辑:另一个要求是程序在执行有用的工作之前不应终止。
I want the first line of my Java program output to print whether assertions are turned on. How do I do this?
Edit: An additional requirement is that the program should not terminate before doing useful work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这个怎么样?我不懂Java,但我认为这可能有用:
How about this? I don't know Java, but I think this may work:
性能更好的解决方案(不会引发异常)是:
A better performing solution (that does not throw exceptions) is: