I am having a doubt.
My understanding is that jdk
has [ jre
+ development tools (Java, javac, debugger etc.) + source code (src.zip) ].
Now working of java compiler is nothing to do with the running of class file.
If I am compiling a .java
file then from where the java compiler is importing the package?
I could find the packages under jre
.
If I do not opt to install jre
while installing jdk
, does that mean I will not be able to compile the java file having import statement?
Please help.