Questions tagged [debuggervisualizer]

Visualizers are components of the IDE debugger user interface that displays a variable or object in a manner that is appropriate to its data type.

Visualizers are components of the IDE debugger user interface. A visualizer creates a dialog box or another interface to display a variable or object in a manner that is appropriate to its data type. For example, an HTML visualizer interprets an HTML string and displays the result as it would appear in a browser window; a bitmap visualizer interprets a bitmap structure and displays the graphic it represents.

168 questions
0
votes
4 answers

Anyone know a good, free debugger for C++?

I've been having a really hard time with those kinds of bugs that just don't make any sense, and an even bigger one with trying to figure out how Code::Blocks' debugger works. If there's any way to make it show pointers' contents, or to be able to…
Mutoh
  • 358
  • 3
  • 18
-1
votes
1 answer

Intellij Debugger Display behavior

I am curious about how Intellij Debugger decides what to display for Java. Using below code as an example. public class App { public static void main(String[] args) { Map map = new HashMap<>(); map.put("A",…
HKIT
  • 628
  • 1
  • 8
  • 19
-5
votes
1 answer

run and debug have different results in method named append() in StringBuffer

In picture's code ,I will get the different result. The first case, run the code,print is 111222. The second case, debug the code,print is 111. And also I find a problem in source code. From the picture above we could find the Expression…
1 2 3
11
12