我在我的机器上安装了JDK 1.4.1
和JDK 1.7
编写的项目。我可以使用以下行构建 1.4-sources :
javac @sources.txt -source 1.4 -target 1.4 -deprecation -classpath %cp% -Xstdout log.txt -d .\classes
是否可以使用-source 1.4 -target 1.7
组合运行它?
此外,如果我在安装了JDK 1.7.1的系统上运行使用JDK 1.4.1编写的应用程序,我是否会有任何性能提升?