What does the {???} mean in the VC++ Watch window?

那年仲夏 提交于 2020-01-03 05:22:06

问题


I am debugging a C project with Visual Studio 2013. What does the {???} mean in the below Watch window?

I guess there must be something wrong and I searched a bit. But no luck.


回答1:


Igor’s suggestion is correct, this is the sample for this issue.

If I disable the line code “currnode->nextnode = NULL;”, it will show the same result as yours.

But if I enable it, it would show the NULL value like this screen shot, so it would be related to null value of the pointer.



来源:https://stackoverflow.com/questions/38841021/what-does-the-mean-in-the-vc-watch-window

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!