When I use javac to compile many independent .java file, I find if one fails, no .class file will generate. For example, I try this command:
javac A.java B.java C.java -Xmaxerrs 200 -Xmaxwarns 200
There are no dependencies among these *.java files. When I use the command above to compile these *.java files, I find:
Case 1: All of the *.java files are correct. I will get A.class, B.class and C.class after javac's compilation.
Case 2: A.java has some errors, B.java and C.java are both correct. After compilation, I can't get any .class file.
How can I get B.class and C.class after javac's compilation in Case 2? Is there any javac option to solve this problem?