Idea中开启assert断言
Posted GoldArowana &
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Idea中开启assert断言相关的知识,希望对你有一定的参考价值。
先打开相应的配置面板,有以下两种方式。
然后在VM栏里输入 -enableassertions 或者 -ea 就好了
然后编写程序试试
我的目录结构如下:(因为Main class那里要写类的全限定名, -ea的上一行)
代码:
public class AssertTest { public static void main(String[] args) { int a = 10; int b = 20; assert a > b : "错误,a不大于b"; } }
结果:
如果不写-ea,则程序继续执行,不检测assert断言,不会报异常.
以上是关于Idea中开启assert断言的主要内容,如果未能解决你的问题,请参考以下文章