Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 在 Visual Studio 调试器中查看数组?
我使用以下方法声明了一个包含 50 个元素的数组:
int *ans; ans = new int[50];
然而,当我查看“Locals”列表并尝试扩展数组时,它只有一个元素,这是为什么呢?难道我做错了什么?
该locals列表只知道您有一个指向整数的指针。不幸的是,它没有一个很好的方法来知道这个数组有多大。它可能会变得更复杂,或者您可以为该变量创建自己的自定义查看器 - 这取决于您可能使用的 IDE。
locals