结构体指针(关于C语言传值的理解)

    //定义一个结构体
    struct word_count
    {
        int ch_count;
        int word_count;
        int line_count;
    };
    //定义一个结构体指针
    typedef struct word_count *p_count_struct;
    //对结构体进行初始化
    void init(p_count_struct *count_ent)
    {
        (*count_ent) = (struct word_count *)malloc(sizeof(struct word_count));
        (*count_ent)->ch_count = 0;
        (*count_ent)->word_count = 0;
        (*count_ent)->line_count = 0;
    //printf("ch_count: %d, word_count: %d, line_count: %d\n", (*count_ent)->ch_count, (*count_ent)->word_count, (*count_ent)->line_count);
    }
    //main函数调用
    int main(int argc, char *argv[])
    {
        p_count_struct count_ent;
        init(&count_ent);
        printf("ch_count: %d, word_count: %d, line_count: %d\n", count_ent->ch_count, count_ent->word_count, count_ent->line_count);
    }


  • 理解
    main函数将结构体指针的地址(&count_ent)传递给init函数,p_count_struct *为结构体指针的指针类型,所以现在init函数中的count_ent是一个结构体指针的地址(不同与main函数中的count_ent),对其解引用*count_ent才是结构体指针。另外:当一个指针p指向一个结构体时,可以用p->结构成员

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值