Home > Net >  What does the "p" and "01" icons signify in IntelliJ IDEA?
What does the "p" and "01" icons signify in IntelliJ IDEA?

Time:01-01

I wrote a simple Java program in IntelliJ IDEA and added some breakpoints to checkout the stack frames and the respective variables of the stack frames as shown in the image below:

enter image description here

In the Variables panel for the "main" stack frame, there are 2 symbols - "p" (in yellow circle) and "01" (in blue square).

What is the meaning of these symbols?

CodePudding user response:

Documentation for this variables panel is click on Variable types expands the list

  • Related