Java assert 关键字使用

本文详细介绍了Java 1.4中引入的断言(assert)关键字的使用方法与应用场景,并通过示例代码解释了如何利用断言确保代码的正确性。同时,文章强调了在生产环境中正确使用断言的重要性。

关于Java assert关键字的使用,参考Stack Overflow的高票回答:

What are some real life examples to understand the key role of assertions?

 

Assertions (by way of the assert keyword) were added in Java 1.4. They are used to verify the correctness of an invariant in the code. They should never be triggered in production code, and are indicative of a bug or misuse of a code path. They can be activated at run-time by way of the -eaoption on the java command, but are not turned on by default.

An example:

public Foo acquireFoo(int id) {
  Foo result = null;
  if (id > 50) {
    result = fooService.read(id);
  } else {
    result = new Foo(id);
  }
  assert result != null;

  return result;
}

 

这段话的翻译是:

Java 1.4 加入了断言(也就是assert关键字)。 它们被用来检验代码中的不变条件的正确性。 它们不应该在生产环境中被触发,而应该用来指示BUG或者代码路径的误用。可以通过在Java命令行加上-ea 选项来在运行时启用它们,但是默认情况下,它们是关闭的。

 

 

一说,根据Oracle的官方文档,assert不应该用来检验public方法的参数,而应该用抛异常来代替。

请注意,这里说的是不是像网上的文章说的不使用assert关键字,规范的使用断言可以增加代码可读性,但是在生产环境中不应该触发任何的assert条件。

 

参考文献: http://docs.oracle.com/javase/8/docs/technotes/guides/language/assert.html

转载于:https://my.oschina.net/u/2541538/blog/1552667

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值