Is it advisable to make programs in Java just by creating new classes within a single project in eclipse? [closed]

-3

I started studying the Java language recently and I have a question, is it better to create a new project or always create a new class within a single project even if it is not on the related subject?

    
asked by anonymous 06.12.2018 / 02:01

1 answer

-1

It is always better to create another project. 1º that is more organized. 2º that when you are compiling and generating the project .jar for implementation in some establishment or something, you will do this only with the necessary classes / files.

    
06.12.2018 / 02:03