My eclipse出现这个,怎么回事,能调吗,用不用删掉

2025年03月13日 06:47
有2个网友回答
网友(1):

的确,如果使用eclipse的话,只安装jre就可以了,jdk中编译java源程序的工具是javac,但是eclipse使用的不是javac!eclipse的JDT用的是自己写的编译器,对javac没有任何依赖关系,这一直是Eclipse一件自豪的事情。
其实这也没什么好奇怪的,编译这项工作不一定非要交给jdk不可,正如tomcat能够编译jsp一样

JDT Core
JDT Core is the Java infrastructure of the Java IDE. It includes:
    * An incremental Java compiler. Implemented as an Eclipse builder, it is based on technology evolved from VisualAge for Java compiler. In particular, it allows to run and debug code which still contains unresolved errors.

网友(2):

I'm