Is it true that Sun's compiler always compiles every source file and Eclipse's compiler compile only changed files and those that are affected by such a change?
I believe that you are correct on both counts.
You can of course force Eclipse to recompile everything.
But the other part of the equation is that Java build tools like Ant and Maven are capable of only compiling classes that have changed, and their tree of dependent classes.
EDIT
In Ant, incremental compilation can be done in two ways:
By default the <javac>
task compares the timestamps of .java
and corresponding .class
files, and only tells the Java compiler to recompile source files that are newer than their corresponding object files, or that don't have an object file at all.
The <depend>
task also takes into account dependencies between classes, which it determines by reading and analysing the dependency information embedded in the .class
files. Having determined which .class
files are out of date, the <depend>
task deletes them so a following <javac>
task will recompile them. However, this is not entirely fool-proof. For example, extensive changes to the source code can lead to the <depend>
task may be analysing stale dependencies. Also certain kinds of dependency (e.g. on static constants) are not apparent in the .class
file format.