鱼C论坛

 找回密码
 立即注册
查看: 1665|回复: 2

小白求助 结构体指针的问题

[复制链接]
发表于 2020-3-11 19:41:13 | 显示全部楼层 |阅读模式

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

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

x
#define _CRT_SECURE_NO_WARNINGS
#define NUM 3
#include "stdio.h"
#include "stdlib.h"
#include "string.h"

typedef struct Computer
{
        char brand[20];
        double price;
        char color[20];
}TEAC;

void printComputer(TEAC* t,int i)  
{
        printf("电脑的品牌为:%s\n", t[i].brand);
        printf("电脑的价格为:%f\n", t[i].price);
        printf("电脑的颜色为:%s\n", t[i].color);
}

void getMaxPrice(TEAC* t)  //问题:这里形参为啥要用一级指针,用元素TEAC t不行吗?
{
        if (t[0].price > t[1].price)
        {
                if (t[0].price > t[2].price)
                {
                        printComputer(t, 0);
                }
                else  //t[0].price < t[2].price
                {
                        printComputer(t, 2);
                }
        }
        else  //t[0].price < t[1].price
        {
                if (t[1].price > t[2].price)
                {
                        printComputer(t, 1);
                }
                else //t[0].price < t[1].price
                {
                        printComputer(t, 2);
                }
        }

}

void main()
{
        int i;
        TEAC t1 = { "华为",2000.5,"红色" };
        TEAC t2, t3;
        strcpy(t2.brand, "联想");
        t2.price = 5000.0;
        strcpy(t2.color, "紫色");

        strcpy(t3.brand, "西门子");
        t3.price = 4000.5;
        strcpy(t3.color, "蓝色");

        TEAC t[NUM] = { t1,t2,t3 };
        for (i = 0; i < NUM; ++i)
        {
                printComputer(&t, i);
        }

        printf("==============\n");

        getMaxPrice(&t);
        system("pause");
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-3-11 19:43:58 | 显示全部楼层
#define _CRT_SECURE_NO_WARNINGS
#define NUM 3
#include "stdio.h"
#include "stdlib.h"
#include "string.h"

typedef struct Computer
{
        char brand[20];
        double price;
        char color[20];
}TEAC;

void printComputer(TEAC* t,int i)
{
        printf("电脑的品牌为:%s\n", t[i].brand);
        printf("电脑的价格为:%f\n", t[i].price);
        printf("电脑的颜色为:%s\n", t[i].color);
}

void getMaxPrice(TEAC* t)
{
        if (t[0].price > t[1].price)
        {
                if (t[0].price > t[2].price)
                {
                        printComputer(t, 0);
                }
                else  //t[0].price < t[2].price
                {
                        printComputer(t, 2);
                }
        }
        else  //t[0].price < t[1].price
        {
                if (t[1].price > t[2].price)
                {
                        printComputer(t, 1);
                }
                else //t[0].price < t[1].price
                {
                        printComputer(t, 2);
                }
        }

}

void main()
{
        int i;
        TEAC t1 = { "华为",2000.5,"红色" };
        TEAC t2, t3;
        strcpy(t2.brand, "联想");
        t2.price = 5000.0;
        strcpy(t2.color, "紫色");

        strcpy(t3.brand, "西门子");
        t3.price = 4000.5;
        strcpy(t3.color, "蓝色");

        TEAC t[NUM] = { t1,t2,t3 };
        for (i = 0; i < NUM; ++i)
        {
                printComputer(t, i);
        }

        printf("==============\n");

        getMaxPrice(t);
        system("pause");
}
上面代码出了点错 下面贴新的代码 是因为数组名t是指针 所以才用一级指针来接的吗?
如果不修改指针的内容,比如打印数据 直接用一级指针?
如果修改指针的指向 就用二级指针?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-11 22:46:41 | 显示全部楼层
void getMaxPrice(TEAC* t)  //问题:这里形参为啥要用一级指针,用元素TEAC t不行吗?
结合的例子,你既然要比较,也就是说所谓的t应该不是一个,那请问,如果你就传 TEAC t ,你如何表示多个?
你不想用指针,我们就直接传数组,那参数是不是也得 TEAC t[]?
我们延展下,arr[]数组与指针*arr 在实际使用中的差别大吗?arr[0]几乎等同于*p,那你用指针有和不可呢?

至于你后面的观点
如果不修改指针的内容,比如打印数据 直接用一级指针?
如果修改指针的指向 就用二级指针?
我觉得可以这么理解
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-16 00:21

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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