我刚开始讲指针,有点困惑。我知道&意味着一个变量的地址,*可以用在一个指针变量前面,以获得指针所指向的对象的值。但是当你使用数组、字符串或者使用变量的指针副本调用函数时,情况就不同了。很难看出其中的逻辑模式。
什么时候应该使用&和*?
我刚开始讲指针,有点困惑。我知道&意味着一个变量的地址,*可以用在一个指针变量前面,以获得指针所指向的对象的值。但是当你使用数组、字符串或者使用变量的指针副本调用函数时,情况就不同了。很难看出其中的逻辑模式。
什么时候应该使用&和*?
当前回答
你有指针和值:
int* p; // variable p is pointer to integer type
int i; // integer value
使用*将指针转换为值:
int i2 = *p; // integer i2 is assigned with integer value that pointer p is pointing to
使用&将一个值转换为指针:
int* p2 = &i; // pointer p2 will point to the address of integer i
编辑: 在数组的情况下,它们被处理得非常像指针。如果你认为它们是指针,你将使用*来获取它们内部的值,就像上面解释的那样,但还有另一种更常见的使用[]操作符的方式:
int a[2]; // array of integers
int i = *a; // the value of the first element of a
int i2 = a[0]; // another way to get the first element
要得到第二个元素:
int a[2]; // array
int i = *(a + 1); // the value of the second element
int i2 = a[1]; // the value of the second element
所以[]索引操作符是*操作符的一种特殊形式,它是这样工作的:
a[i] == *(a + i); // these two statements are the same thing
其他回答
好吧,看起来你的帖子被编辑了…
double foo[4];
double *bar_1 = &foo[0];
看看如何使用&来获取数组结构开头的地址?以下
Foo_1(double *bar, int size){ return bar[size-1]; }
Foo_2(double bar[], int size){ return bar[size-1]; }
会做同样的事情。
我觉得你有点糊涂了。你应该读一本关于指针的教程/书。
本教程非常适合初学者(清楚地解释了&和*是什么)。别忘了读Kenneth Reek写的《C语言指针》
&和*之间的区别非常明显。
例子:
#include <stdio.h>
int main(){
int x, *p;
p = &x; /* initialise pointer(take the address of x) */
*p = 0; /* set x to zero */
printf("x is %d\n", x);
printf("*p is %d\n", *p);
*p += 1; /* increment what p points to i.e x */
printf("x is %d\n", x);
(*p)++; /* increment what p points to i.e x */
printf("x is %d\n", x);
return 0;
}
简单地说
&表示地址,你会看到在C语言中修改参数变量的函数占位符中,参数变量是按值传递的,使用&表示按引用传递。 *表示指针变量的解引用,即获取该指针变量的值。
int foo(int *x){
*x++;
}
int main(int argc, char **argv){
int y = 5;
foo(&y); // Now y is incremented and in scope here
printf("value of y = %d\n", y); // output is 6
/* ... */
}
上面的例子说明了如何使用引用传递来调用函数foo,与此比较
int foo(int x){
x++;
}
int main(int argc, char **argv){
int y = 5;
foo(y); // Now y is still 5
printf("value of y = %d\n", y); // output is 5
/* ... */
}
下面是使用解引用的示例
int main(int argc, char **argv){
int y = 5;
int *p = NULL;
p = &y;
printf("value of *p = %d\n", *p); // output is 5
}
上面说明了我们如何获得y的地址并将其赋值给指针变量p。然后我们通过将*附加到p的前面来解引用p,以获得p的值,即*p。
你有指针和值:
int* p; // variable p is pointer to integer type
int i; // integer value
使用*将指针转换为值:
int i2 = *p; // integer i2 is assigned with integer value that pointer p is pointing to
使用&将一个值转换为指针:
int* p2 = &i; // pointer p2 will point to the address of integer i
编辑: 在数组的情况下,它们被处理得非常像指针。如果你认为它们是指针,你将使用*来获取它们内部的值,就像上面解释的那样,但还有另一种更常见的使用[]操作符的方式:
int a[2]; // array of integers
int i = *a; // the value of the first element of a
int i2 = a[0]; // another way to get the first element
要得到第二个元素:
int a[2]; // array
int i = *(a + 1); // the value of the second element
int i2 = a[1]; // the value of the second element
所以[]索引操作符是*操作符的一种特殊形式,它是这样工作的:
a[i] == *(a + i); // these two statements are the same thing
首先理解指针是复杂的,你必须做练习和 多多练习。 不要指望在第一次迭代时就能抓住它,也不要指望读到解释 并认为你已经理解了,因为很可能你没有……
如果你想要的不仅仅是理论上的理解,我建议遵循这个 斯坦福CS107课程和练习, 至少遵循前三节课,其中解释了指针。
斯坦福CS107, Jerry Cain
另一个非常有价值的工具是gdb,在那里您可以进行交互 就像你用python写的那样。 用gdb你可以玩和实验:
(gdb) x pp.name
0x555555555060 <_start>: 0x8949ed31
(gdb) x &pp.name
0x7fffffffdc38: 0x55555060
(gdb) p &pp.name
$4 = (char **) 0x7fffffffdc38
(gdb) p *pp.name
$5 = 49 '1'