Exception in thread "main" java.lang.NullPointerException: 널이다. at java.base/java.util.Objects.requireNonNull(Objects.java:246) at com.github.sejoung.codetest.methods.ParametersValidity.main(ParametersValidity.java:10)
Exception in thread "main" java.lang.NullPointerException: 널이다. at java.base/java.util.Objects.requireNonNull(Objects.java:246) at com.github.sejoung.codetest.methods.ParametersValidity.main(ParametersValidity.java:11)
Process finished with exit code 1
위에는 vm 옵션을 주지 않은경우고 vm 옵션을 주면
실행결과는 틀려진다.
1 2 3 4 5
Exception in thread "main" java.lang.AssertionError at com.github.sejoung.codetest.methods.ParametersValidity.main(ParametersValidity.java:10)
Process finished with exit code 1
검사를 하지 않아도 되는 경우는 유효성 검사비용이 지나치게 높거나 실용적이지 않을때 혹은 계산과정에서 암묵적으로 검사가 수행될때를 말한다.