Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+16 votes
asked in CSC335 Fall 2022 by (1 point)

1 Answer

+4 votes

Can you provide more information about what you're trying to accomplish?

Eclipse compiles multiple java source files for you every time you hit the green run button...

All of the .java files that are stored inside of the src/ folder get compiled and turned into .class files inside of a bin/ folder (for a basic Eclipse project) or a target/ folder (for a maven project).

Eclipse then runs those compiled .class files using the Java Virtual Machine.

answered by (508 points)
...