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

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

Susan Sarandon
Susan Sarandon原创
2024-12-20 03:52:13461浏览

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn