首页 > 后端开发 > C++ > C 中的 `ptr`、`ptr`、`*ptr` 和 `(*ptr)` 有什么区别?

C 中的 `ptr`、`ptr`、`*ptr` 和 `(*ptr)` 有什么区别?

Susan Sarandon
发布: 2024-12-20 03:52:13
原创
457 人浏览过

What's the Difference Between `ptr  `, `  ptr`, `  *ptr`, and `(*ptr)  ` in C  ?

指针:ptr、 ptr 和 *ptr

这些指针表达式经常令人困惑,所以让我们澄清一下它们含义:

1。 *ptr :

  • 取消引用指针 ptr 并返回指向的值。
  • 增加指针 ptr 以指向下一个元素。

示例:

int arr[] = {1, 2, 3};
int *ptr = arr;
cout << *ptr++; // Outputs 1 and then points to the next element (2)
登录后复制

2. * ptr:

  • 首先递增指针 ptr,将其移动到下一个元素。
  • 然后,дереференсирует 更新后的指针,返回指向的值到。

示例:

int arr[] = {1, 2, 3};
int *ptr = arr;
cout << *++ptr; // Moves the pointer to the next element and outputs 2
登录后复制

3. *ptr:

  • 解引用指针 ptr,返回指向的值。
  • 然后,递增解引用的值。

注意: 增加值,而不是指针ptr.

示例:

int *ptr = new int(5); // Points to a dynamically allocated integer
cout << ++*ptr; // Outputs 6 and updates the dereferenced integer to 6
登录后复制

4. Bonus: (*ptr) :

  • 强制取消引用 ptr,从而获取指向的值。
  • 增加取消引用的值。

注意:与 *ptr 类似,它会影响值,而不是指针本身。

示例:

int *ptr = new int(5);
cout << (*ptr)++; // Outputs 5 and updates the dereferenced integer to 6
登录后复制

以上是C 中的 `ptr`、`ptr`、`*ptr` 和 `(*ptr)` 有什么区别?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板