调试 C++/CLI 2D 数组时观察窗口未正确更新
我正在调试 C++/CLI 程序集。 在程序集中,我有一个 2D 托管数组,如下所示:
array<char, 2> ^classifications;
我有四个变量用于访问数组中的位置:
int x, y, dx, dy;
在“监视”窗口中,此表达式有效:
classifications[y, x]
但是,当 dx 的值改变时,此表达式不会更新和 dy 改变:
classifications[y + dy, x + dx]
有谁知道为什么它不起作用? 需要明确的是,这是一个调试版本,我尝试过干净的重建但没有成功。
I'm debugging a C++/CLI assembly. In the assembly, I have a 2D managed array declared like this:
array<char, 2> ^classifications;
I have four variables I'm using to access positions in the array:
int x, y, dx, dy;
In the Watch window, this expression works:
classifications[y, x]
However, this expression does not update when the values of dx and dy change:
classifications[y + dy, x + dx]
Does anyone know why it's not working? To be clear, this is a debug build and I've tried a clean rebuild with no success.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论