Java assert 关键字使用

别说谁变了你拦得住时间么 提交于 2019-12-10 06:57:37

关于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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!