.classpath file in Java related to Java or Eclipse -
i have read many sites , decided ask question on stackoverflow, question pretty basic
what .classpath
file? file related java project or eclipse?
some people think file related eclipse , thinks related project?
.class
files related java.
you write code in java, compiled javac
bytecode. bytecode store in .class
files, , further interpreted java virtual machine (jvm).
about classpath on wikipedia:
similar classic dynamic loading behavior, when executing java programs, java virtual machine finds , loads classes lazily (it loads bytecode of class when class first used). classpath tells java in filesystem files defining these classes.
so classpath mechanism related java, , handled eclipse thank .classpath
file.
hope :)
Comments
Post a Comment