How to show address of array element in debugger?

How can I show the memory address for element 0?

0
正式评论

When stopped at a breakpoint, you can open Run | Debugger Actions | Evaluate Expression... There you can execute something like expectedLob[0]. The result will contain both the value and its address. Alternatively, you can add a variable watch if you need to see the address all the time.

请先登录再写评论。