Debugger for C / C ++ and Java

I mainly use vim, but I really like the debuggers used in modern IDEs like Netbeans, Visual C ++ and Eclipse, and I wonder if there are any debuggers like those in the standalone program? I tried using gdb, but it seems like debugging will take much longer using the command line. I also tried ddd, but it was a little disappointing to use as it does not display some complex structures with arrays. I really like how the debuggers in modern IDEs allow me to simply click the down arrow to see what is in my arrays that I don’t know how to do in gdb or ddd.

+3
source share
6 answers

You could take a look at:

http://code.google.com/p/jswat/

This is a standalone java debugger. I am afraid that it does not support C ++ debugging.

+2
source

Try Nemiver, which is a standalone graphical debugger for C and C ++. It is openly developed as part of the GNOME project and uses gdb below.

http://projects.gnome.org/nemiver/

+2
source
+1

Java, ++ IDE . vim , windbg gdb. , , .

+1

Eclipse. Eclipse - VIM Eclipse .

0

IntelliJ , , , Eclipse, Eclipse. , smart complete (Ctrl + Shift + Space, / ), /, , hotswap . , Eclipse, , , .

0

Source: https://habr.com/ru/post/1781418/


All Articles