一世轻尘 发表于 2020-12-14 21:17:03

*&head啥意思

void initialize(struct student *&head)
{
        head=(struct student*)malloc(LEN);
        if(head==NULL)
        {
                printf("error!");
                exit(1);
        }
        head->next=NULL;//使头结点指针域为空
}
*&head中的取地址符啥意思,为什么要加?{:10_254:}

4goodworld 发表于 2020-12-14 22:02:57

我觉得你应该 这么看

struct student *    &head

struct student* 这是一个指针类型
&head是一个引用就是用head 代表一个struct student 类型的指针
不知道我的理解是否正确,请看见的大神批评指正。

一世轻尘 发表于 2020-12-15 08:45:36

//成绩录入
void enter(struct student *&h)
{
        struct student *p,*q=h;
        char name,id;
        int math, English,computer;
        p=(struct student*)malloc(LEN);//为学生信息申请节点
        printf("请依次输入学生信息:\n");
        printf("姓名 学号 数学 英语 计算机导论与程序设计\n");
        scanf("%s %s %d %d %d",name,id,&math,&English,&computer);
       
        for(;q->next!=NULL;q=q->next){;}//移动到尾结点

//将输入的内容赋值给链表中的相应位置
        strcpy(p->name,name);
        strcpy(p->id,id);
        p->score=math;
        p->score=English;
        p->score=computer;
        p->next=NULL;
        q->next=p;
        q=p;
}
还有这个,加不加取地址符到底有啥区别

chxchxkkk 发表于 2020-12-15 09:31:50

我理解是这样:&head,取head的地址,*(&head)对这个地址解引用,写成**head可能更好理解。

一世轻尘 发表于 2020-12-15 09:38:32

chxchxkkk 发表于 2020-12-15 09:31
我理解是这样:&head,取head的地址,*(&head)对这个地址解引用,写成**head可能更好理解。

可是在主函数中,它所对应的实参是一个struct student类型的指针,如果改成**head那么主函数就没法运行了,而且我也觉得&在这是C++中引用的意思,不是取地址

xieglt 发表于 2020-12-15 10:08:20

void initialize(struct student *&head)

其中 struct student *&head 是作为型参
& 写在型参里的时候是C++语法,叫做引用,本质还是传地址。
struct student * & head 表示传递一个 struct student 指针的引用
调用的时候必须这样写
struct studenthead;
struct student *p = & head;
initialize(p);
而不能直接写成
initialize(&head);

页: [1]
查看完整版本: *&head啥意思