鱼C论坛

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

[已解决]关于结构体变量的问题

[复制链接]
发表于 2021-1-19 17:43:04 | 显示全部楼层 |阅读模式

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

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

x
前面这两种结构体类型指针定义是一样的吗,都是定义他们为首地址,如果不一样第二种定义是什么意思?如果一样为什么我最下面那段代码老是报错呢,求指教。
struct student 
{
        int num;
        float score;
        struct student *next;
}stu,p1,p2;
struct student *stu,*p1,*p2;

struct student 
{
        int num;
        float score;
        struct student *next;
}*stu,*p1,*p2;

#include <stdio.h>
#if(1)
struct object
        {
                float Chinese;
                float Math;
                float English;
        }obj;
#endif
struct student
        {
                int num;
                char *name;
                struct object obj;
        }*stu;
int main(void)
{
        void print(struct student *p);
        struct student *stu;
        *stu={8,"JJ Lin",{98.5,90.0,95.5}};
        print(stu);
}

void print(struct student *p)
{
        printf("num           :%d\n",(*p).num);
        printf("name          :%s\n",(*p).name);
        printf("Chinese score :%.1f\n",(*p).obj.Chinese);
        printf("Math score    :%.1f\n",p->obj.Math);
        printf("English score :%.1f\n",p->obj.English);
}
最佳答案
2021-1-19 18:05:36
本帖最后由 jackz007 于 2021-1-19 18:11 编辑
struct student
{
        int num;
        float score;
        struct student * next ;
}stu , p1 , p2                ;
struct student * stu , * p1 , * p2 ; // 错误,相同的变量被重复定义
struct student
{
        int num;
        float score;
        struct student * next ;
} * stu ,* p1 ,* p2           ; // 所有变量定义正确有效
#include <stdio.h>
#if(1)
struct object
        {
                float Chinese     ;
                float Math        ;
                float English     ;
} obj                             ;
#endif
struct student
        {
                int num           ;
                char name[24]     ;  // name 需要实质性保存字符串,所以,不可以定义成指针
                struct object obj ;
} * stu                           ;

int main(void)
{
        void print(struct student * p)                     ;
        struct student stu = {8,"JJ Lin",{98.5,90.0,95.5}} ; // stu 需要保存数据,不可以定义成指针,结构整体赋值只能在定义时进行
        print(& stu)                                       ;
}

void print(struct student *p)
{
        printf("num           :%d\n",(*p).num);
        printf("name          :%s\n",(*p).name);
        printf("Chinese score :%.1f\n",(*p).obj.Chinese);
        printf("Math score    :%.1f\n",p->obj.Math);
        printf("English score :%.1f\n",p->obj.English);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-1-19 18:05:36 | 显示全部楼层    本楼为最佳答案   
本帖最后由 jackz007 于 2021-1-19 18:11 编辑
struct student
{
        int num;
        float score;
        struct student * next ;
}stu , p1 , p2                ;
struct student * stu , * p1 , * p2 ; // 错误,相同的变量被重复定义
struct student
{
        int num;
        float score;
        struct student * next ;
} * stu ,* p1 ,* p2           ; // 所有变量定义正确有效
#include <stdio.h>
#if(1)
struct object
        {
                float Chinese     ;
                float Math        ;
                float English     ;
} obj                             ;
#endif
struct student
        {
                int num           ;
                char name[24]     ;  // name 需要实质性保存字符串,所以,不可以定义成指针
                struct object obj ;
} * stu                           ;

int main(void)
{
        void print(struct student * p)                     ;
        struct student stu = {8,"JJ Lin",{98.5,90.0,95.5}} ; // stu 需要保存数据,不可以定义成指针,结构整体赋值只能在定义时进行
        print(& stu)                                       ;
}

void print(struct student *p)
{
        printf("num           :%d\n",(*p).num);
        printf("name          :%s\n",(*p).name);
        printf("Chinese score :%.1f\n",(*p).obj.Chinese);
        printf("Math score    :%.1f\n",p->obj.Math);
        printf("English score :%.1f\n",p->obj.English);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2021-1-20 09:05:49 | 显示全部楼层

大佬,再问一下,、那下面这两个是一个意思吗,结构体变量名不是表示地址吗,那定义的结构体指针变量的变量名表示啥?
struct student
{
        int num;
        float score;
        struct student * next ;
}stu , p1 , p2  
struct student
{
        int num;
        float score;
        struct student * next ;
} * stu ,* p1 ,* p2
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-12 06:44

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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