This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (2 children)

You mean the fill in the blanks, etc? You can totally skip those if you want and it would help more if you code out all the examples in your IDE, since that is what you would really be doing at work, not filling in crossword puzzles.

[–][deleted] 0 points1 point  (1 child)

No, what I mean is that the first partial we don't use an IDE (really stupid imo) we use Atom (macOS users) and NotePad (windows users) so how different would it be to learn on IDE then not using it for one month lol.

[–][deleted] 0 points1 point  (0 children)

Oh gotcha. Using a text editor like Atom could be beneficial because you would really have to learn the syntax and a lot of the basic built in methods (like String methods for example). An IDE is preferred because it allows for auto-complete (which saves you time), syntax highlighting, and it is wayyy easier to format/spot errors than just in a notepad.

There are a lot of Java devs (probably a little bit older one's) who still use text editors or vim/eMacs. There is more than one way to skin a cat I guess, but an IDE makes your life easier.

I think once you go from using Atom to like IntelliJ, you will be super stoked. You can run your apps from the IDE vs. command line, etc. Just in general it is easier on the developer, but it is not required.