如何实现更大的条件?

时间:2017-07-22 21:40:12

标签: java compare conditional-statements assert

如何更改代码?例如:

assert d > Lambda: "The parametr d aren't much larger than Lambda, method in section 7.3. not applicable";

如何在Java中使用check d>> Lambda,d> Lambda未验证它?

1 个答案:

答案 0 :(得分:0)

请记住使用-ea标志来启用断言。 >>运算符不存在也许你可以实现一些其他逻辑,例如在x / 1000> 1中。

~$ java -ea -classpath /home/admin Boo
Exception in thread "main" java.lang.AssertionError: some text
at Boo.main(Boo.java:7)
~$ cat Boo.java 

public class Boo {

public static void main(String[] args) {

int i =100;
  assert i < 99 : "some text" ;

} 

}