将 int 视为地址/指针

发布于 2024-11-05 11:51:37 字数 96 浏览 1 评论 0原文

我有一个 C 函数,它返回一个 int,表示内存中某个块的基地址。如果我想将该 int 的值视为地址(以便我可以将其视为数组或以其他方式遍历它指向的内存区域),我将使用什么语法?

I have a C function that returns an int that represents the base address of some block in memory. If I wanted to treat the value of that int as an address (so that I could treat it as an array or otherwise traverse the area in memory it points to) what syntax would I use?

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

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

发布评论

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

评论(1

彻夜缠绵 2024-11-12 11:51:37

假设 int 和指针在您的机器上具有相同的大小,则简单的转换应该可以工作。

例如:

int function_that_returns_address();
...
char * p = (char *) function_that_returns_address();
p[0] = 'H';
p[1] = 'i';
p[2] = 0;

Assuming ints and pointers are the same size on your machine a simple cast should work.

For example:

int function_that_returns_address();
...
char * p = (char *) function_that_returns_address();
p[0] = 'H';
p[1] = 'i';
p[2] = 0;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文