调试 C++/CLI 2D 数组时观察窗口未正确更新

发布于 2024-07-27 17:48:19 字数 413 浏览 2 评论 0原文

我正在调试 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文