多维数组 x86

发布于 2024-12-07 20:05:10 字数 70 浏览 0 评论 0原文

我知道如何在 C++ 中执行此操作,但在 x86 中我似乎无法在任何地方声明 4x4 数组。我只是在寻找一个例子来帮助我开始。

I know how to do this in C++ but in x86 I can not seem anywhere to declare say a 4x4 array. I am just looking for an example to get me started.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

波浪屿的海角声 2024-12-14 20:05:10

汇编语言没有“多维数组”的概念,至少没有直接的。您将需要分配总空间量(在您的情况下为 16 个元素),并自行处理行/列偏移计算。

Assembly language doesn't have the concept of a "multidimensional array", at least not directly. You will need to allocate the total amount of space (16 elements in your case), and handle the row/column offset calculations yourself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文