更改 C 中指向整数的值

发布于 2024-11-01 20:36:15 字数 135 浏览 2 评论 0原文

我想在堆中声明一个新的整数,

int *intPtr = (int*) malloc(sizeof(int));

如何更改*intPtr指向的堆中空间的值? 谢谢

I want to declare a new integer in the heap,

int *intPtr = (int*) malloc(sizeof(int));

How do I change the value of the space in the heap, to which *intPtr points to?
Thanks

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

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

发布评论

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

评论(2

木格 2024-11-08 20:36:15

取消引用intPtr:

*intPtr = 0;

Dereference intPtr:

*intPtr = 0;
夜巴黎 2024-11-08 20:36:15

首先,您不需要强制转换 malloc 的结果。 malloc 返回 void* 并且 void* 隐式转换为任何指针(int*、char*、...)。

所以:

int *intPtr = malloc(sizeof(int));

你也可以这样写:

int *intPtr = malloc(sizeof *intPtr);

如果你想改变 intPtr 指向的值,只需使用取消引用运算符 '*' 就像:

*intPtr = <new_value>

哪里是你的新整数值。

First of all, you don't need to cast the result of malloc. malloc returns a void* and the void* is casted implicitly to any pointer (int*, char*, ...).

So :

int *intPtr = malloc(sizeof(int));

You can also write :

int *intPtr = malloc(sizeof *intPtr);

If you want to change the value pointed by intPtr, just use the dereference operator '*' like :

*intPtr = <new_value>

where is your new integer value.

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