我把所有能够加入-ea选项的地方都试过了
但还是无法应用assert
帮助文档中写的是“insert -ea in the front of command line switchs”
{classics}这种东西就应该是command line switch了吧
那怎么加?
-ea {classics}
or {-ea classics}
我加了老半天,就是不行 :(((((((((((((((
c*****t 发帖数: 1879
2
Assertion is a java 1.4 feature. By default it is not supported in
compile time nor in run time.
To compile w/ java 1.4 feature enabled, you do
javac -source 1.4 your.java
To run with assertion enabled
java -ea your.class
【在 m******l 的大作中提到】 : 我把所有能够加入-ea选项的地方都试过了 : 但还是无法应用assert : 帮助文档中写的是“insert -ea in the front of command line switchs” : {classics}这种东西就应该是command line switch了吧 : 那怎么加? : -ea {classics} : or {-ea classics} : 我加了老半天,就是不行 :(((((((((((((((