Issue
What is the difference between the src folder and the bin folder in an Eclipse project? They both seem the same, however, src uses .java files whereas bin uses .class files. Why is this? What difference do they have?
Solution
src files are your raw, human-readable source code (in this case, .java).
bin files are your compiled code (in this case, .class)
Answered By - D.N.
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.