Does the Java compiler work well if using a target level lower than the source level? For example:
javac -source 1.7 -target 1.6
Does the Java compiler work well if using a target level lower than the source level? For example:
javac -source 1.7 -target 1.6
if you compiler code use java 1.7,the code can not run with java 1.6,if you do this,you will receive a Unsupported major.minor version.