Java断言不打印其“原因”
当我使用“java -ea A”运行以下代码时,会触发断言更正,但我没有看到第二个参数的提及。
public class A {
public A() {
assert 1==2, "We have a problem";
}
public static void main(String[] args) {
A a = new A();
}
}
似乎在任何地方都找不到这个问题的答案,我错过了什么?
When I run the following code with "java -ea A", the assertion correction fires, but I see no mention of the second parameter.
public class A {
public A() {
assert 1==2, "We have a problem";
}
public static void main(String[] args) {
A a = new A();
}
}
Can't seem to find the answer to this anywhere, what am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
语法应该是:
The syntax should be: