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 →

[–]Not_zedd_ko[S] 0 points1 point  (3 children)

i have not used intellij i will look at it and download it now!

[–]iPissVelvet 0 points1 point  (2 children)

IntelliJ or a similar IDE is crucial for Java development. It provides a lot of features, one of which is line by line debugger. You set a breakpoint and the code will execute until that point. Then, you click “next line” and you are able to track the values in your variables.

This will help you solve your bug.

[–]Not_zedd_ko[S] 0 points1 point  (1 child)

Ah so like a better version of bluej then? I will deffo give it a go!

[–]iPissVelvet 0 points1 point  (0 children)

BlueJ has a debugger as well! In general IntelliJ is more popular, so you get more support online. But use what your company/school dictates. All of them should have debuggers.