码迷,mamicode.com
首页 > 其他好文 > 详细

assert(断言)的使用

时间:2020-04-15 21:40:59      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:bsp   inf   ror   状态   error   png   boolean   enable   keyword   

一、定义

  assert是一种常用的调试方式,对Boolean表达式进行检查,一个正确的程序必须确保表达式的值为true;如果为false则程序处于不正确的状态,assert会给出警告或者退出。

 

二、格式

  (1)assert [boolean 表达式]

  • 如果[boolean表达式]为true,则程序继续执行。
  • 如果为false,则程序抛出AssertionError,并终止执行。

技术图片

 

 

  (2)assert [boolean 表达式 : 错误表达式 (日志)]

  • 如果[boolean表达式]为true,则程序继续执行。
  • 如果为false,则程序抛出java.lang.AssertionError,输出[错误信息]

 

三、打开

IDEA中默认assert(断言)是关闭,设置一下jvm的参数,参数是-enableassertions或者-ea(推荐)。

技术图片

 

assert(断言)的使用

标签:bsp   inf   ror   状态   error   png   boolean   enable   keyword   

原文地址:https://www.cnblogs.com/Tibbers/p/12708354.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!