Placement of the asterisk in pointer declarations(在指针声明中放置星号)
问题描述
我最近决定我最终只需要学习 C/C++,关于指针,或者更准确地说,我不太了解它们的定义.
I've recently decided that I just have to finally learn C/C++, and there is one thing I do not really understand about pointers or more precisely, their definition.
这些例子怎么样:
int* test;
int *test;
int * test;
int* test,test2;
int *test,test2;
int * test,test2;
现在,据我所知,前三种情况都在做同样的事情:Test 不是一个 int,而是一个指向 1 的指针.
Now, to my understanding, the first three cases are all doing the same: Test is not an int, but a pointer to one.
第二组例子有点棘手.在情况 4 中,test 和 test2 都是指向 int 的指针,而在情况 5 中,只有 test 是一个指针,而 test2 是一个真正的"int.案例6呢?和案例5一样吗?
The second set of examples is a bit more tricky. In case 4, both test and test2 will be pointers to an int, whereas in case 5, only test is a pointer, whereas test2 is a "real" int. What about case 6? Same as case 5?
推荐答案
4, 5, 6 是同一个东西,只有 test 是一个指针.如果你想要两个指针,你应该使用:
4, 5, and 6 are the same thing, only test is a pointer. If you want two pointers, you should use:
int *test, *test2;
或者,甚至更好(让一切都清楚):
Or, even better (to make everything clear):
int* test;
int* test2;
这篇关于在指针声明中放置星号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在指针声明中放置星号
基础教程推荐
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- C++,'if' 表达式中的变量声明 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01