Can standard Sun javac do incremental compiling?

前端 未结 4 705
小鲜肉
小鲜肉 2020-12-14 01:01

Recently I started to use Eclipse\'s java compiler, because it is significantly faster than standard javac. I was told that it\'s faster because it performs incremental comp

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-14 02:01

    Javac only compiles source files that are either named on the command line or are dependencies and are out of date. Eclipse may have a finer-grained way of deciding what that means.

提交回复
热议问题