鱼C论坛

 找回密码
 立即注册
查看: 1171|回复: 5

[已解决]有关c语言结构体 值传递 给函数的一个问题

[复制链接]
发表于 2020-9-26 12:51:50 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
小甲鱼在带你学c里面的一个值传递让我有点疑惑
我把我写的和甲鱼大大的都贴出来。

我是这样写的,也是成功的:
#include <stdio.h>
#include <stdlib.h>

struct Book getInput(void);

struct Date
{
        int year;
        int month;
        int day;
};
struct Book
{
        char name[40];
        char title[128];
        float price;
        struct Date date;
};

struct Book getInput(void)//《《《《《《《《《《疑惑点《《《《《《《《《《《《《
{
        struct Book book;
        printf("请输入书名:");
        scanf("%s",book.title);
        printf("请输入姓名:");
        scanf("%s",book.name);
        printf("请输入售价:");
        scanf("%f",&book.price);
        printf("请输入日期:");
        scanf("%d%d%d",&book.date.year,&book.date.month,&book.date.day);
        
        return book; 
}

void printBook(struct Book book)//将结构体变量 值传递 给指针会使开销变大。 
{
        printf("name:%s\n",book.name);
        printf("title:%s\n",book.title);
        printf("price:%f\n",book.price);
        printf("date:%d%d%d\n",book.date.year,book.date.month,book.date.day);
}

int main(void) {
        struct Book b1,b2;
        printf("请输入第一本书的信息》》》\n");
        b1=getInput(); 
        putchar('\n');
        printf("请输入第二本书的信息》》》\n");
        b2=getInput();
        putchar('\n'); 
        printf("你的录入:\n");
        printBook(b1);
        printBook(b2);
        return 0;
}


甲鱼老师是这样写的,但我不知道为什么要把b1值传递给函数,解释不通啊aaa:
#include <stdio.h>
#include <stdlib.h>

struct Book getInput(struct Book book);

struct Date
{
        int year;
        int month;
        int day;
};
struct Book
{
        char name[40];
        char title[128];
        float price;
        struct Date date;
};

struct Book getInput(struct Book book)//《《《《《《《《《《《疑惑点《《《《《《《《《
{
        printf("请输入书名:");
        scanf("%s",book.title);
        printf("请输入姓名:");
        scanf("%s",book.name);
        printf("请输入售价:");
        scanf("%f",&book.price);
        printf("请输入日期:");
        scanf("%d%d%d",&book.date.year,&book.date.month,&book.date.day);
        
        return book; 
}

void printBook(struct Book book)//将结构体变量 值传递 给指针会使开销变大。 
{
        printf("name:%s\n",book.name);
        printf("title:%s\n",book.title);
        printf("price:%f\n",book.price);
        printf("date:%d%d%d\n",book.date.year,book.date.month,book.date.day);
}

int main(void) {
        struct Book b1,b2;
        printf("请输入第一本书的信息》》》\n");
        b1=getInput(b1); //《《《《《《《《《《疑惑点《《《《《《《《《《《《《
        putchar('\n');
        printf("请输入第二本书的信息》》》\n");
        b2=getInput(b2);//《《《《《《《《《《疑惑点《《《《《《《《《《《《《
        putchar('\n'); 
        printf("你的录入:\n");
        printBook(b1);
        printBook(b2);
        return 0;
}
最佳答案
2020-9-27 22:39:50
greenery 发表于 2020-9-27 17:56
我懂了,甲鱼大大的这个代码,把b1值传递给函数局部变量book,同时定义了一个Book结构体类型并且把b1的值传 ...

对啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-26 21:44:31 From FishC Mobile | 显示全部楼层
我也不知道怎么回答,只能说都可以,没毛病,我感觉没必要疑惑!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2020-9-27 17:36:21 | 显示全部楼层
还是想知道一下
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-9-27 17:56:12 | 显示全部楼层
我懂了,甲鱼大大的这个代码,把b1值传递给函数局部变量book,同时定义了一个Book结构体类型并且把b1的值传进去了。
又因为接下去的赋值语句把原b1的值覆盖掉了所以相当于就是只起到定义Book结构体类型的作用。

我的那句就是单纯的定义Book结构体类型,所以两个作用其实一样。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-9-27 22:39:50 From FishC Mobile | 显示全部楼层    本楼为最佳答案   
greenery 发表于 2020-9-27 17:56
我懂了,甲鱼大大的这个代码,把b1值传递给函数局部变量book,同时定义了一个Book结构体类型并且把b1的值传 ...

对啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-9-27 22:41:02 From FishC Mobile | 显示全部楼层
还有你要点回复,不然我收不到,我碰巧看到了,不然我都不知道你还发了消息
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 03:16

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表